body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #00c6ff, #0072ff);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}

.container {
text-align: center;
background: white;
padding: 40px 30px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
width: 300px;
}

h1 {
margin-bottom: 30px;
color: #0072ff;
}

.button-container {
display: flex;
flex-direction: column;
gap: 15px;
}

.boton {
background: #0072ff;
color: white;
text-decoration: none;
padding: 12px;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s ease;
}

.boton:hover {
background: #005fcc;
}