*{ 
    margin: 0;
    padding: 0;
    font-family: "JetBrains Mono", monospace;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-color: black;
    background-image: url(https://64.media.tumblr.com/50bd0954aa54c9782fbad5328469e846/12fc8a74983389f2-e4/s640x960/9209086b6b976ded01d5b542302a87f6b93f6e39.gifv);
    background-position:center;
    background-repeat:no-repeat ;
    background-size: 100%;
    position: relative;

}

.header2{
    min-height: 100vh;
    width: 100%;
    background-color: black;
    background-image: url(https://64.media.tumblr.com/03e42494ee61de74e1c6ab96d44288d2/12fc8a74983389f2-02/s640x960/00fe0f6d0c23e6d7d732d5add013a7f1904da2d8.gifv);
    background-position:center;
    background-repeat:no-repeat ;
    background-size: 100%;
    position: relative;}
nav{
    display: flex;
    padding: 2%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;;
}
.nav-links{
    flex: 1;
    text-align:right;

}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    outline-color: black;
    outline-width: 2px;
    color:white ;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content:'' ;
    width: 0%;
    height: 2px;
    background: red;
    display: block;
    margin: auto;
    transition: 0.5s;

}
.nav-links ul li:hover::after{
    width: 100%;

}
.text-box{
    width: 90%;
    color: red;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;

}
.text-box p{
    margin: 10px 0 40px;
    font-size: 13px;
    color: white;
    
}
.text-box2{
    width: 90%;
    color: red;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h2{
    font-size: 70px;

}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid red;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid red;
    background: red;
    transition: 1s;
}
nav .fa{
    display: none;
}
  .footer{
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background-color: black;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: red;
}
@media(max-width: 700px){
    .text-box h1{
        font-size: 30px ;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: black;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: red;
        margin: 10px;
        font-size: 20px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    .footer{
        width: 100%;
    padding: 30px 0;
    text-align: center;
    background-color: black;
    }
    .footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: red;
    }<1STOP-LOOKING-AT-MY-CODE-U-SKIDD!>