*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    min-height: 100vh;
    background-image: linear-gradient(
        to right,
        rgba(2, 10, 20, 0.85),
        rgba(2, 10, 20, 0.35),
        rgba(2, 10, 20, 0.05)
    ), url("Home.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:#04111F;
}

.header{
    min-height: 100vh;
    position: relative;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    padding: 28px 0;
}

nav .logo{
    color: #7ED8FF;
    text-shadow: 0 0 20px #020A14;
    text-decoration: none;
    font-size: 38px;
    letter-spacing: 3px;
    font-weight: 700;
}

nav .logo small{
    display: block;
    color: #27B7FF;
    font-size: 13px;
    letter-spacing: 5px;
    margin-top: -4px;
    text-transform: uppercase;
}

nav ul li{
    display: inline-block;
    margin: 0 18px;
}

nav ul li a{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #27B7FF;
    border-bottom: 1px solid #27B7FF;
    padding-bottom: 8px;
}

.header h5,
.header h1,
.header p,
.header button{
    margin-left: 5.5%;
}

.header h5:first-of-type{
    margin-top: 210px;
    color:#D8F4FF;
    font-size: 22px;
    letter-spacing: 12px;
    font-weight: 400;
}

.header h1{
    color:#EAF7FF;
    font-size: 105px;
    letter-spacing: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 0 25px #020A14;
}

.header h5:nth-of-type(2){
    color:#D8EFFF;
    font-size: 21px;
    letter-spacing: 10px;
    font-weight: 400;
    margin-top: 14px;
}

.header p{
    color: #C6D6E3;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 35px;
}

.header button{
    margin-top: 35px;
    background: transparent;
    border: 1px solid #31BFFF;
    color: #FFFFFF;
    padding: 18px 34px;
    border-radius: 14px;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(39, 183, 255, 0.25);
}

.header button:hover{
    background-color: #1AB8FF;
    color:#04111F;
    box-shadow: 0 0 35px rgba(39, 183, 255, 0.65);
    transform: translateY(-3px);
}
/* Large Screens */

@media (max-width: 1400px){

    .header h1{
        font-size: 90px;
    }

}

/* Laptop */

@media (max-width: 1200px){

    nav{
        width: 95%;
    }

    nav ul li{
        margin: 0 10px;
    }

    .header h1{
        font-size: 75px;
    }

}

/* Tablet */

@media (max-width: 992px){

    nav{
        flex-direction: column;
        gap: 20px;
    }

    nav ul{
        text-align: center;
    }

    nav ul li{
        margin: 10px;
    }

    .header h1{
        font-size: 60px;
    }

    .header h5:first-of-type{
        margin-top: 120px;
    }

}
@media (max-width: 768px){

    .header{
        text-align: center;
    }

    .header h1,
    .header h5,
    .header p,
    .header button{
        margin-left: 0;
    }

    .header h1{
        font-size: 50px;
        letter-spacing: 6px;
    }

    .header h5:first-of-type{
        letter-spacing: 6px;
    }

    .header h5:nth-of-type(2){
        letter-spacing: 3px;
    }

    .header p{
        font-size: 16px;
        padding: 0 20px;
    }

}
@media (max-width: 480px){

    nav .logo{
        font-size: 28px;
    }

    .header h1{
        font-size: 40px;
    }

    .header h5:first-of-type{
        font-size: 16px;
    }

    .header h5:nth-of-type(2){
        font-size: 14px;
    }

    .header button{
        padding: 14px 24px;
    }

}