/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('img/imagen.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
}

/* Estilo de la caja principal */
.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* Efecto de difuminado de fondo */
}

/* Imagen de perfil */
.avatar {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 20px 0;
    border: 4px solid #ff58a5;
}

/* Título y subtítulo */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 24px;
    margin: 10px 0;
    font-weight: 500;
    color: #333;
}

/* Estilo de los botones */
.button {
    display: inline-block;
    margin: 12px 0;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    background-color: #ff58a5;
    color: white;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
}

/* Efecto hover en los botones */
.button:hover {
    background-color: #ff0076;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: #ff0076;
}

/* Pie de página */
footer {
    font-size: 14px;
    color: #333;
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

footer a {
    color: #ff0076;
    text-decoration: none;
}

footer a:hover {
    color: #8700ff;
    text-decoration: underline;
}
