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;
    overflow: hidden;
    position: relative;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.grid-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-button {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-family: 'Amiri Bold', serif;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px; /* Tamaño igual para los botones */
}

.grid-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.image-container img {
    width: 60px; /* Tamaño ajustado de la imagen del gato */
    margin-bottom: 10px;
}

.color-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.color-box {
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.bottom-buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 20px;
}

.arrow-button img, .home-button img {
    width: 40px;
    height: 40px;
}

.arrow-button, .home-button {
    text-decoration: none;
    transition: transform 0.3s;
}

.arrow-button:hover, .home-button:hover {
    transform: translateY(-2px);
}
