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

body{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: black;
    background-color: black;
}
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.header{
    height: 100vh;
    background-position: center;
    background-size: auto;
    background-color: black;
    position: relative;
    
    backface-visibility: hidden;
} 
.heading-primary{
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 4.5vw;
    font-weight: 700;
    letter-spacing: .4vw;
    position: absolute;
    right: 2.5%;
    left: 2.5%;
    top: 50%;
    transform: translateY(-50%);
    
}

.heading-primary-right{
    display: block;
    text-align: left;
    animation: close .6s ease ;
    animation-fill-mode: forwards;

}

.heading-primary-left{
    display: block ;
    text-align: right;
    animation: close .6s ease ;
    animation-fill-mode: forwards;
    
    

}
.Work {
    position: relative;
}

.text-box {
    position: absolute;
    top: 22.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2vw;
    transition: all .6s ease;
}
.text-box:link,
.text-box:visited{
    text-decoration: none;
    color: white;

}
.text-box:hover {
    letter-spacing: .5vw;
}

.button{
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 02vw;
    font-weight: 700;
    letter-spacing: .5vw;
    text-align:center;
    padding: 1.5vh;
    width: 30%;
    height: 100%;
    margin: auto;
    position: relative;
    

}
.link:link,
.link:visited{
    text-decoration: none;
    color: white;
    animation: close .6s ease-out ;
    animation-fill-mode: forwards;

}

.link.bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 1.5vh;
}

@keyframes close{
    0%{
        opacity: 1;

    }
    100%{
        opacity: 0;
        transform: scale(0.7);
    }


}

img{
    width: 100vw;
}

.images{
    
    width: 30%;
    float: left;
    margin: 1.66%;
    
    animation: show .6s .3s ease-out;
    animation-fill-mode: backwards;
}

.button1{
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 02vw;
    font-weight: 700;
    letter-spacing: .5vw;
    position: fixed;
    top: 2.5%;
    right: 1.66%;

}
.link1:link,
.link1:visited{
    text-decoration: none;
    color: rgb(255, 255, 255);
    animation: show .6s .3s ease-out;
    animation-fill-mode: backwards;


}

@keyframes show{
    0%{
        opacity: 0;
        transform: scale(.8);
        
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }


}