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

body{
background:#050505;
color:white;
font-family:'Inter',sans-serif;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
overflow:hidden;
}

.overlay{
position:fixed;
inset:0;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75));
z-index:-1;
}

header{
text-align:center;
padding:40px;
}

.logo{
width:120px;
height:120px;
border:2px solid #d6b17a;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
font-family:'Cormorant Garamond',serif;
font-size:52px;
color:#d6b17a;
margin-bottom:30px;
letter-spacing:2px;
}

h1{
font-family:'Cormorant Garamond',serif;
font-size:58px;
font-weight:600;
margin-bottom:40px;
letter-spacing:4px;
}

.buttons{
display:flex;
flex-direction:column;
gap:18px;
width:280px;
margin:auto;
}

.btn{
text-decoration:none;
color:white;
border:1px solid #d6b17a;
padding:18px;
border-radius:50px;
font-size:17px;
letter-spacing:2px;
transition:.35s;
background:rgba(255,255,255,.03);
backdrop-filter:blur(10px);
}

.btn:hover{
background:#d6b17a;
color:black;
transform:translateY(-3px);
box-shadow:0 0 25px rgba(214,177,122,.45);
}

@media(max-width:768px){

h1{
font-size:42px;
}

.logo{
width:90px;
height:90px;
font-size:42px;
}

.buttons{
width:100%;
}

}
