*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:url("../img/bar.jpg") center center;
background-size:cover;
background-attachment:fixed;

height:100vh;

font-family:Poppins,sans-serif;

overflow:hidden;

position:relative;

}

.overlay{

position:absolute;

width:100%;
height:100%;

background:rgba(0,0,0,.55);

backdrop-filter:blur(1px);

}

header{

position:absolute;

right:40px;
top:30px;

z-index:100;

}

.btn-registro{

color:white;
text-decoration:none;

border:1px solid #a86d1b;

padding:15px 28px;

border-radius:10px;

font-size:15px;

transition:.3s;

background:rgba(0,0,0,.25);

}

.btn-registro:hover{

background:#d8a24b;
color:black;

}

main{

position:relative;

z-index:10;

display:flex;

justify-content:center;
align-items:center;

height:100vh;

text-align:center;

}

.logo{

width:360px;
max-width:90%;

margin-bottom:30px;

}

h1{

font-family:'Cinzel',serif;

font-size:55px;

color:white;

line-height:1.25;

margin-bottom:45px;

text-shadow:0 0 12px #000;

}

.botones{

display:flex;

gap:25px;

justify-content:center;

flex-wrap:wrap;

}

.btn{

padding:18px 45px;

border-radius:10px;

text-decoration:none;

font-weight:bold;

font-size:18px;

transition:.3s;

}

.amarillo{

background:#d59b34;

color:black;

}

.amarillo:hover{

background:#efb247;

transform:translateY(-3px);

}

.oscuro{

border:2px solid #d59b34;

color:white;

background:rgba(0,0,0,.4);

}

.oscuro:hover{

background:#d59b34;

color:black;

}

@media(max-width:768px){

.logo{

width:250px;

}

h1{

font-size:32px;

padding:0 20px;

}

.btn{

width:270px;

}

header{

right:15px;
top:15px;

}

}

