@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;

}
html,body{
    height: 100vh;
}
nav{
    z-index: 999999;

    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    padding: 1rem 0;
}
nav #social_btns a{
    margin: 0 15px;
    font-size: 1.25rem;
    color: #E6B325;
}
nav  h2{
    color: #E6B325;
}
.imgs{
    width: 100%;
    z-index: 999;

    height: 100vh;
    position: relative;
}

.imgs .overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(157,122,25);
    background: linear-gradient(0deg, rgba(157,122,25,.8) 0%, rgba(167,129,25,.8) 2%, rgba(13,31,34,0.3) 100%); 
    z-index: 6666;
}
.imgs img{
    
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    top: 0%;
    left: 0%;
    transition: all .35s ease-in-out;
    animation: Anim 35s infinite;
}
h1{
    animation: Anim2 30s infinite;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 999999999;
    top: 50%;
    left: 0%;
    transform: translate(-50%,-50%);
    color: #fafafa;
    letter-spacing: 3px;
    font-size: 5rem;
    text-transform: uppercase;
}
h1::first-letter{
    color: #E6B325;
    font-size: 6rem;

}
.imgs img.active{
    opacity: 1;
}
@keyframes Anim{
    0%{
        transform:scale(1) translate(0%,0%);
    }
    50%{
        transform:scale(1.2) translate(5%,5%);
    }
    100%{
        transform:scale(1) translate(0%,0%);

    }
}


@keyframes Anim2{
    0%{
        transform:scale(1) ;
    }
    50%{
        transform:scale(1.2) ;
    }
    100%{
        transform:scale(1) ;

    }
}