@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #ff758c, #ff7eb3, #ff758c);
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    text-align: center;
}

img {
    width: 250px; /* Ancho fijo para todas las imágenes */
    height: 250px; /* Alto fijo para mantener las proporciones consistentes */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #ff4f7b;
}


h1 {
    color: #ff4f7b;
    font-weight: bold;
    font-size: 28px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 14px 28px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
    font-weight: bold;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

#yes-btn {
    background-color: #28a745;
    color: white;
    position: left;
}

#yes-btn::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#no-btn {
    background-color: #dc3545;
    color: white;
    position: right;
}

#no-btn::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

button:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.love-text {
    font-size: 22px;
    color: #444;
    margin-top: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

.final-image {
    width: 250px; /* Ancho fijo para todas las imágenes */
    height: 250px; /* Alto fijo para mantener las proporciones consistentes */
    object-fit: cover; /* Asegura que la imagen cubra el área sin distorsionarse */
    margin-top: 20px;
    border-radius: 15px;
    width: 80%;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #ff4f7b;
}

@media (max-width: 600px) {
    img {
        width: 150px; /* Tamaño más pequeño en pantallas pequeñas */
        height: 150px;
    }
}
