@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8bbd9 30%;
    min-height: 100dvh;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.container {
    background-color: #ffffff66;
    border: 1px solid #ffffff;
    width: 40rem;
    margin: 10px 20px;
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}


@media (max-width: 800px) {
    .container {
        width: 30rem;
    }
}

@media (max-width: 500px) {
    .container {
        width: 23rem;
    }
}

@media (max-width: 400px) {
    .container {
        width: 20rem;
    }
}

.our-photos {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin: 20px 0px;
    img {
        width: 100%;
        height: 100%;
        max-width: 500px;
        border-radius: 20px;
    }
}

.verse {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0px;
    blockquote {
        background-color: #e91e623e;
        padding: 10px;
        border-radius: 20px;
        font-style: italic;
        color: #4a148c;
        text-align: justify;
    }
    cite {
        display: block;
        text-align: right;
        color: #e91e63;
        font-weight: 600;
    }
}

.love-counter-section {
    text-align: center;
    font-weight: 700;
    color: #e91e63;
}

.time-counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
    margin: 20px 0px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    .time-number {
        color: #e91e63;
        text-shadow: #e91e63 0 0px 20px;
        font-size: 2rem;
        font-weight: bold;
    }
    .time-label {
        color: #4a148c;
        font-size: 1rem;
    }
    background-color: rgba(252, 228, 236, 0.6);
    border: 1px solid rgba(248, 187, 217, 0.3);
    border-radius: 20px;
}

.music {
    display: flex;
    flex-direction: column;
    h2 {
        text-align: center;
        font-weight: 700;
        color: #e91e63;
        margin-bottom: 20px;
    }
}

button {
    background: #f48fb1;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 20px;
    border-radius: 50px;
    cursor: pointer;
}




/*
@keyframes heartFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.floating-hearts {
    position: fixed;
    margin: 0;
    padding: 0;
    width: 100svw;
    height: 100svh;
    pointer-events: none;
    z-index: -1;
}

.floating-heart {
    position: absolute;
    color: rgba(244, 143, 177, 0.3);
    font-size: 1.5rem;
    animation: heartFloat 6s infinite ease-in-out;
}
*/