*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Outfit',sans-serif;

    background:#081b35;

    color:white;

    overflow-x:hidden;

}

.background{

    position:fixed;

    inset:0;

    background:
    linear-gradient(135deg,#0c3f8d,#081b35);

    z-index:-1;

}

header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:35px 60px;

}

h1{

    font-size:50px;

    font-weight:700;

    letter-spacing:8px;

}

nav{

    display:flex;

    gap:25px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#75d7ff;

}

.hero{

    width:900px;

    max-width:90%;

    margin:120px auto;

    background:rgba(255,255,255,.08);

    border:2px solid #7fdcff;

    backdrop-filter:blur(12px);

    padding:50px;

}

.hero h2{

    font-size:60px;

    color:#8ce7ff;

    margin-bottom:20px;

}

.hero p{

    line-height:1.8;

    font-size:18px;

}

button{

    margin-top:35px;

    background:#78dbff;

    color:#002142;

    border:none;

    padding:15px 35px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:scale(1.08);

}