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;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: 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: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.celebration-image {
    width: 200px; /* Tamaño ajustado para que sea un poco más grande */
    height: auto;
    margin-bottom: 20px;
}

.continue-button, .menu-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    font-size: 1em;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.continue-button:hover, .menu-button:hover {
    color: #000;
}

.bottom-buttons {
    display: flex;
    justify-content: flex-start; /* Alinear el botón a la izquierda */
    width: 100%;
    padding: 0 10px;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.arrow-button img {
    width: 50px;
    height: 50px;
}

.arrow-button {
    text-decoration: none;
    transition: transform 0.3s;
}

.arrow-button:hover {
    transform: translateY(-2px);
}
