body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    color: white;
}

#background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.content {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.couple-click-area {
    position: absolute;
    bottom: 35%;
    width: 15%;
    height: 35%;
    cursor: pointer;
}

/* Estilo de los mensajes */
#romantic-phrase {
    position: absolute;
    top: 20%;
    font-size: 2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    /* La transición dura 1 segundo, no 4 ni 5 */
    transition: opacity 1s ease-in-out, top 1s ease-in-out;
}

/* Estilo para los mensajes de abajo */
#romantic-phrase.bottom-message {
    top: auto;
    bottom: 20%;
}

/* Clase para mostrar el mensaje */
#romantic-phrase.visible {
    opacity: 1;
}