body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3E2D0;
    font-family: 'Amiri', serif;
}

.container {
    text-align: center;
    background-color: #f5e8d0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 360px;
    height: 90%;
    max-height: 740px;
}

.llama-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
}

.llama-image {
    width: 80px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.grid-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* Reducir el espacio entre los botones */
}

.grid-button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px; /* Reducir el padding para hacer los botones más pequeños */
    font-size: 14px; /* Reducir el tamaño de la fuente */
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: background-color 0.3s, transform 0.3s;
    height: 70px; /* Reducir la altura de los botones */
}

.grid-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

