*{
    color: var(--text-color);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3.5rem;
}
:root{
    --bg-color: #101010;
    --secound-bg-color: #191919;
    --text-color: #fff;
    --secound-color: #c6c9d8bf;
    --main-color: rgb(66, 0, 189);
    --third-color: #262626;
    --fourth-color: #2e2a2a;
    --fith-color: #1600da;
    --big-font: 5.3rem;
    --h2-font: 4.3rem;
    --p-font: 1.1rem;
    --green-color: rgb(96, 6, 148);
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 1;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 25px 15%;
    transition-duration: .3s;
}
.logo{
   color: var(--text-color);
   font-size: 30px;
   font-weight: bold;
   letter-spacing: 1px;
}
.navbar{
    display: flex;
}
.navbar li{
    position: relative;
}
.navbar a{
    color: var(--text-color);
    font-weight: bold;
    font-size: 1rem;
    padding: 10px 20px;
}
.navbar a::after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--main-color);
    left: 0;
    bottom: -4px;
    transition: ease .40s;
}
.navbar a:hover::after{
    width: 100%;

}
.h-btn{
    padding: 0 20px;
    height: 40px;
    display: inline-block;
    line-height: 42px;
    background: var(--green-color);
    color: none;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all .30s;
}
.h-btn:hover{
    transform: translateY(-5px);
}
.hero{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12,3,51,0.3),rgba(12,3,51,0.3));
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav{
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   padding: 20px 8%;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
nav .logo{
    width: 420px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;

}
.content{
    text-align: center;
}
.content h1{
    font-size: 150px;
    color: purple;
    font-weight: 500;
    transition: 0.5;
}
.content h1:hover{
    -webkit-text-stroke: 2px rgb(238, 255, 0);
    color: transparent;
}
.content a{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    border: 2px solid rgb(16, 0, 158);
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}
.back-video{
   position: absolute;
   right: 0;
   bottom: 0;
   z-index: -1;
}

@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
}