*{
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: url(christian-grab-AygJgCM_vto-unsplash.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;

}
.logo{
    width: 50%;
    color: darkslategray;
    cursor: pointer;
    margin-top: 20px;
    font-style: inherit;
}
.navbar{
    width: 85%;
    height: 15%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
button{
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
}
.content{
    max-width: 800px;
    color: #fbfcfd;
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}
h1{
    font-size: 80px;
    margin: 10px 0 30px;
    line-height: 80px;
}
.snowflakes img{
    width: 30px;
    animation: snowflake 7s linear infinite;
}
.snowflakes{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: 0;

}

@keyframes snowflake{
    100%{
        transform: translateY(0);
        opacity: 0;
    }
    50%{
        
        opacity: 1;
    } 
    20%{
      
        opacity: 1;
    }
    0%{
        transform: translateY(-80vh);
        opacity: 0;
    }
}
.snowflakes img:nth-child(1){
    animation-delay: 2s;
}
.snowflakes img:nth-child(2){
    animation-delay: 1s;
}
.snowflakes img:nth-child(3){
    animation-delay: 4.5s;
}
.snowflakes img:nth-child(4){
    animation-delay: 6s;
}
.snowflakes img:nth-child(5){
    animation-delay: 8s;
}
.snowflakes img:nth-child(6){
    animation-delay: 3s;
}
.snowflakes img:nth-child(7){
    animation-delay: 5.7s;
}
.snowflakes img:nth-child(8){
    animation-delay: 0.5s;
}
.snowflakes img:nth-child(9){
    animation-delay: 10s;
}
