@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
}
nav{
    display: flex;
    padding: 0.5% 1%;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.393);
    border-bottom: rgb(0, 195, 255);
    border-bottom-style: solid;
    position: sticky; top: 0;
    z-index: 1;
    color: #00ddff;
}
nav img{
    width: 70px;
}
.crossovertext{
    width: 200px;
}
.fa-brands{
    color: white;
    text-align: right;
    font-size: 30px;
}
.fa-brands:hover{
    color: rgb(0, 195, 255);
}
nav img:hover{
    color: #0033FF;
    box-shadow: 0 5px 15px rgb(0, 51, 255);
}
.navigation-link{
    flex: 1;
    text-align: center;
    margin-left: -200px;
}
.navigation-link ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 25px;
    position: relative;
    animation: slide-bottom 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    color: #00f2ff;
}
@keyframes slide-bottom {
    0% {
      transform: translateY(-100px);
    }
    100% {
      transform: translateY(1px);
    }
  } 
.navigation-link ul li a{
    color: #00b3ff;
    text-decoration: none;
    font-size: 15px;
    margin-top: 20px;
}
.navigation-link ul li::after{
        content: '';
        width: 0%;
        height: 2px;
        background: #ff0000;
        display: block;
        margin: auto;
        transition: 0.5s;
}
.navigation-link ul li:hover::after{
    width: 100%;
}
.textbox{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.textbox h1{
    font-size: 50px;
    animation: slide .6s;
    text-align: center;
}
.textbox button{
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
    background: #000000;
    cursor: pointer;
    border: 2px solid #000;
    padding: 10px 20px;
    color: rgb(0, 51, 255);
    animation: slide .6s;
    transition: all 0.2s ease-in-out;
    align-items: center;
}
.textbox button:hover{
    color: #0033FF;
    box-shadow: 0 5px 15px rgb(0, 51, 255);
}
@keyframes slide{
    0%{
        transform: translate(100px);
        opacity: 0;
    }
    100%{
        transform: translate(0px);
        opacity: 1;
    }
}
.textbox h3{
    animation: slide .6s;
}
.logo{
    animation: slide .6s;
}
nav .fas{
    display: none;
}
.fa-solid{
    color: white;
    margin-right: 10px;
}
.footer {
    width: auto;
    padding: 20px 15%;
    background-color: rgb(0, 0, 0);
    color: rgb(0, 51, 255);
}
.footer a{
    color: rgb(0, 51, 255);
}
.footer div{
    text-align: center;
}
@media(max-width: 700px){
    .textbox h1{
        font-size: 30px;
    }
    .navigation-link ul li{
        display: block;
    }
    .navigation-link{
        position: absolute;
        background: rgb(0, 0, 0);
        height: 161.4vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas{
        display: block;
        color: #FFF;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .navigation-link ul{
        padding: 30px;
    }
    .develop h1{
        font-size: 30px;
        color: #FFF;
    }
    .develop p{
        font-size: 20px;
        color: #FFF;
    }
    .header{
        min-height: 100vh;
        width: 100%;
        background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(bg.png)
        ;
        background-position: center;
        background-size: 230%;
        position: relative;
    
    }
}