html {
    scroll-behavior: smooth;

}

body {
    margin: 0;
    padding: 0;
    min-width: 380px;
}

#hero {
    background-image: url('/images/blockhouse-yoga-rental-space-front-of-studio.jpg');
    min-height: 100vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* position: relative; */
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0, 0.5);
    z-index: 0;
}

#all-logos {
    display: flex;
    flex-wrap: wrap;
}

h1, h2 {
    font-family: 'Corben', serif;
    color: white;
    text-align: center;
    font-weight: 300;
}

h1 {
    text-wrap: wrap;
    font-size: 300%;
    margin-top: 0;
}

#headline {
    text-align: center;
    margin-top: 0;
}

#linksholder {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0 auto;
    width: fit-content;
    flex-wrap: wrap;
}

.sitelink {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sitelink > h2 {
    margin-bottom: 0;
}

#location, #rentals {
    margin-top: 5rem;
}

#alex {
    padding: 1rem;
}


.sitelink {
    transform: scale(1);
    transition: all .250s ease;
}

.sitelink:hover {
    transform: scale(1.05);
    cursor: pointer;
}

a {
    text-decoration: none;
}


#rentalInfo {
    min-height: 100vh;
    width: 100vw;
    background-color: rgba(244, 239, 239, 0.5);
    padding-bottom: 3rem;
}

#rentalInfo > h2, #rentalInfo > p {
    color: #333;
}

.textholder {
    text-align: left;
    max-width: 75ch;
    margin: 1rem auto;
    font-size: 19px;
}

.studioImage {
    display: block;
    width: fit-content;
    margin: 2rem auto;
}

.background {
    background: rgba(0,0,0, 0.5);
    width: fit-content;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 8px;
}

#headline, #linksholder, #location, #rentals {
    position: relative;
    z-index: 10;
}

#rentalInfo > h2 {
    margin-top: 0rem;
    padding-top: 2rem;
}

@media (max-width: 1048px){

    #rentals {
    padding-bottom: 3rem;
    margin-top: 1rem;
}
    #alex {
        margin-bottom: 2rem;
    }

    #location {
        margin-bottom: 0;
        padding-bottom: 0;
    }

}

