@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body{
    background: #000;
    color: white;
    font-family: "poppins",sans-serif;
}

a{
    text-decoration: none;
}

header{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    
    
}

.parallax-window {
    ypos: -1rem;
}


header:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 50vh;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,black,transparent);
}

nav,.header-bottom{
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
}

.logo a{
    color: white;
    font-size: 2rem;

}

.btn-sign-up{
    padding: 0.7rem 2rem;
    background: #000;
    color: white;
    font-weight: 500;
    border-radius: 50px;
    transition: .3s;
}

.btn-sign-up:hover{
    background: white;
    color: #000;
}

.header-title{
    margin: auto;
    font-size: 5rem;
    position: relative;
    font-weight: 700;
}

.today-date{
    font-size: 2rem;
    font-weight: 500;
}

.today-date span{
    font-size: 1.5rem;
}

.social-media{
    display: flex;
    list-style: none;
    width: 250px;
    justify-content: space-between;
    align-items: center;
}

.social-media li a{
    color: white;
}


/*about*/

#about{
    width: 100%;
    padding: 2.5rem 0;
}

.about-container{
    width: 900px;
    margin: auto auto;
}


.image-gallery{
    display: flex;
    width: 100%;
    min-height: 300px;
    justify-content: space-between;
    margin-bottom: 2rem;
}




.image-box{
    width: 20%;
    height: 250PX;
    position: relative;
    
}
.image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: 0.3s;
}

.image-box:nth-child(odd){
    align-self: flex-end;
}

.image-box img:hover{
    opacity: 0.5;
}

.rx78{
    position: absolute;
    bottom: -7%;
    left: 50%;
    font-style: italic;
    font-weight: 500;
}

.about-info{
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
}



/*footer*/
footer{
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
}






@media only screen and (max-width: 950px) {
    .about-container{
        width: 90%;
    }
    
}

@media only screen and (max-width: 768px){
    .today-date{
        display: none;
    }

    .social-media{
        width: 100%;
    }  
    .image-gallery{
        flex-direction: column;
        margin-bottom: 1rem;
    }
    .image-box{
        width: 100%;
        height: 400px;
        margin: 1rem;
    }

    .rx78{
        display: none;
    }


}



