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

body{

    font-family:Arial,Helvetica,sans-serif;

    background:#081220;

    color:white;

}

header{

    width:100%;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    position:fixed;

    top:0;

    z-index:1000;

    background:rgba(5,10,20,.75);

    backdrop-filter:blur(12px);

}

.logo{

    font-size:28px;

    font-weight:bold;

    letter-spacing:2px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#2ea8ff;

}

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:120px 8%;

}

.hero-left{

    width:48%;

}

.hero-left h1{

    font-size:58px;

    line-height:1.2;

}

.hero-left span{

    color:#2ea8ff;

}

.hero-left p{

    margin-top:25px;

    color:#c5d0df;

    line-height:1.8;

    font-size:18px;

}

.buttons{

    margin-top:40px;

}

button{

    padding:15px 35px;

    border:none;

    background:#1688ff;

    color:white;

    font-size:17px;

    border-radius:40px;

    cursor:pointer;

    margin-right:20px;

}

.outline{

    background:none;

    border:2px solid white;

}

.hero-right{

    width:46%;

}

.hero-right img{

    width:100%;

    border-radius:20px;

}
