*{box-sizing:border-box}
body{
margin:0;
height:100vh;
background:#020304;
color:#fff;
font-family:Tahoma,Arial,sans-serif;
overflow:hidden;
}
body:before{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle,rgba(0,110,115,.22),transparent 40%);
}
.glow{
position:absolute;
width:450px;height:450px;
left:50%;top:38%;
transform:translate(-50%,-50%);
background:#007278;
filter:blur(170px);
opacity:.22;
}
.page{
position:relative;
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
animation:fade 1.5s ease;
}
.logo{
width:min(330px,65vw);
filter:drop-shadow(0 0 35px rgba(0,150,160,.3));
}
h1{
font-size:42px;
margin:25px 0 10px;
font-weight:700;
}
p{
font-size:22px;
color:#aaa;
margin:0;
}
span{
width:45px;
height:2px;
background:#007278;
margin:28px 0;
}
h2{
font-size:20px;
font-weight:400;
color:#ddd;
}
@keyframes fade{
from{opacity:0;transform:translateY(20px)}
to{opacity:1}
}