*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Archivo', sans-serif;
}

html{
    font-size: 24px;
    line-height: 1.44;
    height: 100%;
    scroll-behavior: smooth;  
    font-family: 'Archivo', sans-serif;
}

body{
    background-color: #020403;
}

nav{
    background-color:#020403;
    text-align: center;
    padding: 20px 45px 0px 45px;
    justify-content: end;
    grid-template-columns: 1fr repeat(2, minmax(auto,auto));
    gap: 2.074rem;
    display: grid;
}

nav a::after{
    content: "";
    position:absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background:#ffffff;
    transition: width 0.3s ease-in-out;
}

nav a:hover::after{
    width: 100%;
}

nav a{
    text-decoration: none;
    color: white;
    position: relative;
    display: inline-block;
}

nav a:hover{
    background-color:#020403 ;
    display: block; 
}

.off-screen-menu{
    background-color:#282525 ;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    left: -450px;
    display: grid;
    grid-column: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    font-size: 1.728rem;
    transition: .3s ease;   
    z-index: 1;
    padding: 100px 0px 500px 0px;
}

.off-screen-menu.active{
left: 0;
}

.hamburger {
    height: 50px;
    width: 50px;
    margin-right: auto;
    position: relative;
    z-index: 999;
}

.hamburger span{
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    position:absolute ;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease-in-out;
}

.hamburger span:nth-child(1){
    top: 25%;
}

.hamburger span:nth-child(3){
    top: 75%;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform:translate(-50%, -50%) rotate(45deg) ;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    top: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

header img{
    height: 800px;
}

img{
    scale: 80%;
}

footer{
    background-color:#020403;
    text-align: center;
    padding: 15px;
    justify-content: end;
    gap: 2.074rem;
    position: absolute 0;
    bottom: 0;
    width: 100%;
    justify-content: end;
    gap: 2.074rem;
    color: white;
    z-index: 0;

}

footer a::after{
    content: "";
    position:absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background:#ffffff;
    transition: width 0.3s ease-in-out;
}

footer a:hover::after{
    width: 100%;
}

footer a{
    text-decoration: none;
    color: white;
    position: relative;
    display: inline-block;
}

footer a:hover{
    background-color:#020403 ;
    display: block; 
}

h1{
    font-size: 3rem;
    font-weight: 75;
    text-align: center;
}

h2{
    font-size: 1.6rem;
    font-weight: 65;
    text-align: center;
}

h1, h2, h3, p{
    color: white;
}

p{
    color: white;
    text-align: center;
}

a{
    color: white;
    text-decoration: none;
}

