body{
margin:0;
font-family:Arial;
background:#050814;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#050814;
border-bottom:1px solid rgba(255,255,255,.1);
}

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:40px;
}

nav a{
margin-left:20px;
color:white;
text-decoration:none;
}

.hero{
height:90vh;
position:relative;
}

#globe-container{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.hero-text{
position:relative;
z-index:2;
text-align:center;
top:40%;
}

.hero h1{
font-size:60px;
background:linear-gradient(gold,#ff7a00,#2fd4ff);
-webkit-background-clip:text;
color:transparent;
}

.content{
padding:100px 10%;
}

button{
background:#2fd4ff;
border:none;
padding:10px 16px;
margin-left:5px;
}