/* #background { 
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;    
    width: 100%;
    max-height: 100%;
    height: 100%;   
    overflow: hidden;
    object-fit: cover;
}    */

.landing { 
    background-image: url("/static/garage/images/background.8e9ee9e0f224.jpg");
    background-size: cover;
    height: 100svh;
    width: 100vw;
    position: sticky;
    top: 0; 
    z-index: -1;
    overflow: hidden;
}

.moreInfo { 
    background-color: white;

}

main { 
    color: white;
    display: flex;
    flex-direction: column;
    overflow-x: clip
}

.moreInfo p { 
    color: black;
}

.about { 

    margin-top: 10vh;   
    margin-left: 20vw;
}

.about p { 
    white-space: pre-line;
    font-size: 1.5em;
    margin-bottom: 100px;
}

.about h1 { 
    color: black;
    font-size: 3em; 
}

#wave { 
    position: relative;
    top: 1px;
}

.bottomText {
    text-align: center;
    width: 100%;
    display: block;
    bottom: 100px;
    position: absolute;
    font-size: 2.5em;
    animation: fade 4s infinite;
}

@keyframes fade { 
    0% { 
        opacity: 0.2;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        opacity: 0.2;
    }
}
