/* style.css */
body {
    margin: 0;
    overflow: hidden;
    font-family: sans-serif; /* Example font */
}

.background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url('Website_noText4.svg') no-repeat;
    background-size: cover;
    background-position: 75% 67.5%;
}

.text-block {
    position: absolute;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Adjust shadow values */
    /* Calculate left position to avoid logo */
    left: 5%; /* Example: 10vw margin */
    top: 35%;
    transform: translateY(-50%); /* Only vertical centering */
    text-align: left; /* Align text to the left */
    width: 60vw; /* Limit the width of the text block */
}



@media (max-width: 768px) {
    .text-block {
        left: 5vw; /* Adjust for smaller screens */
        top: 35%;
        width: 50vw;
    }
}

h1 {
    font-size: 2.8vw; /* Use relative units */
/*    margin-bottom: 0.5em;  Add some spacing */
}

p {
    font-size: 2.1vw; /* Use relative units */
/*    margin: 0.2em 0;  Add some spacing */
}

@media (orientation: portrait) {
    .text-block {
        width: 80vw; /* Adjust for landscape */
		
    }
    h1 {
        font-size: 4vw; /* Use relative units */
/*    margin-bottom: 0.5em;  Add some spacing */
    }

    p {
         font-size: 3vw; /* Use relative units */
/*    margin: 0.2em 0;  Add some spacing */
    }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }
    p {
        font-size: 1.2em;
    }
}