body {
    background-color: #121212;
    color: #f0f0f0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    animation: fadeIn 1.5s ease-in-out;
}

.couple-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

#me, #her {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid #e9a2ad;
    border-radius: 50%;
    padding: 5px;
    background-color: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#me:hover, #her:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 35px rgba(233, 162, 173, 0.4);
}

.plus-sign {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    color: #e9a2ad;
    font-weight: 700;
}

.time-container h1 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

#contador {
    font-size: 1.5rem;
    font-weight: 300;
    background-color: rgba(233, 162, 173, 0.15);
    color: #f0f0f0;
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid #e9a2ad;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .couple-container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .time-container h1 {
        font-size: 2.2rem;
    }

    #contador {
        font-size: 1.3rem;
        width: 95%;
        padding: 18px 25px;
    }

    #me, #her {
        width: 220px;
        height: 220px;
    }

    .plus-sign {
        transform: rotate(90deg);
        font-size: 3.5rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    #me, #her {
        width: 200px;
        height: 200px;
    }

    #contador {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .time-container h1 {
        font-size: 2rem;
    }
}
