@import url('https://fonts.googleapis.com/css?family=Nunito&display=swap');
body{
    margin:0;
    padding:0;
    background: url(fashion.jpg) no-repeat 20% 20%;
    
    font-family: 'Nunito', sans-serif;
}
*{
    box-sizing: border-box;
}
section{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: url(cloth.jpg);
    background-size: cover;
    z-index: 1;
    top:0;
}
section div{
    max-width: 800px;
    font-family: consolas;
}

section div h2{
    margin: 0;
    padding: 0;
    color:#fff;
    font-size: 4em;
}
section div p{
    color:#fff;
    font-size: 1.2em;
    opacity: 0.5;
}
.scrolldown{
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 40px;
    height:40px;
    cursor: pointer;
    /* background: #fff; */
    transform: translateY(-80px) translateX(-50%) rotate(45deg);
}
.scrolldown span{
    position: absolute;
    top: 0;
    left:0;
    display: block;
    width:100%;
    height: 100%;
    border-bottom: 2px solid#fff;
    border-right: 2px solid #fff;
    animation: animate 1.5s linear infinite;
    opacity:0;
}
.scrolldown span:nth-child(1){
    transform: translate(-15px,-15px);
    animation-delay: -0.4s;
}
.scrolldown span:nth-child(2){
    transform: translate(0,0);
    animation-delay: -0.2s;
}
.scrolldown span:nth-child(3){
    transform: translate(15px, 15px);
    animation-delay: 0;
}
@keyframes animate{
    0%{
        top:-5px;
        left:-5px;
        opacity:0;
    }
    25%{
        top:0px;
        left:0px;
        opacity:1;
    }
    50%, 100%{
        top: 5px;
        left: 5px;
        opacity:0;
    }
}

/* Gasp overlay */
.overlay-2 {
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 80vh;
    background: #101010;
}
