/* Reset de m¨˘rgenes y padding predeterminados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo de la fuente (Google Fonts) */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    animation: fadeIn 1.5s ease-out;
}

/* Animaci¨Žn de desvanecimiento al cargar la p¨˘gina */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Estilo del contenedor principal */
.container {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    width: 350px;
    box-sizing: border-box;
    animation: slideUp 1s ease-out;
}

/* Animaci¨Žn para que el contenedor se deslice desde abajo */
@keyframes slideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Estilo del t¨Ştulo */
h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Estilo de la lista de navegaci¨Žn */
nav ul {
    list-style-type: none;
}

nav ul li {
    margin: 15px 0;
}

/* Estilo de los botones */
button {
    background: linear-gradient(135deg, #4CAF50, #45a049); /* Gradiente de verde */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

button i {
    margin-right: 10px;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05); /* Efecto de agrandar al pasar el mouse */
}

button:active {
    transform: scale(0.98); /* Efecto de "clic" al presionar el bot¨Žn */
}

/* Estilos para hacer los botones m¨˘s accesibles */
button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.6);
}
