body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3E2D0; /* Fondo de la página web */
    font-family: 'Amiri', serif;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5e8d0; /* Color anterior de la caja */
    padding: 20px;
    border-radius: 20px; /* Bordes redondeados para la caja */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para dar un poco de profundidad */
    width: 90%; /* Ajuste del ancho al 90% del viewport */
    max-width: 360px; /* Limitar el ancho máximo a 360px */
    height: 90%; /* Ajuste de la altura al 90% del viewport */
    max-height: 740px; /* Limitar la altura máxima */
    overflow: hidden; /* Asegura que no haya desbordamiento de contenido */
}

h1 {
    font-size: 40px; /* Aumentar tamaño de letra para que resalte más */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.notes-button {
    margin-bottom: 40px;
}

.transparent-button {
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-family: 'Amiri Bold', serif;
    cursor: pointer;
}

.transparent-button:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.option-button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 15px 0;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-family: 'Amiri Bold', serif;
    transition: background-color 0.3s, transform 0.3s;
}

.option-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.llama-container {
    position: relative;
    width: 100%; /* Ancho completo dentro de la caja */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinea la llama hacia el fondo de la caja */
    margin-top: 40px; /* Aumentar margen superior para bajar más la llama */
}

.llama-image {
    width: 170px; /* Aumentar el tamaño de la llama */
}