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;
    width: 90%;
    max-width: 360px;
    height: 90%;
    max-height: 740px;
    overflow: hidden;
    position: relative;
}

.top-image {
    width: 100%;
    max-width: 320px; /* Ajusta el ancho máximo */
    height: auto;
    max-height: 160px; /* Limita la altura para mantener la forma rectangular */
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #3c3c3c;
}

p {
    font-size: 1em; /* Tamaño del texto ajustado */
    text-align: justify;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.bottom-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 0 20px;
    align-items: center;
}

.arrow-button img {
    width: 50px;
    height: 50px;
}

.arrow-button {
    text-decoration: none;
    transition: transform 0.3s;
}

.arrow-button:hover {
    transform: translateY(-2px);
}
