body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fcc8d0 0%, #ffffff 100%);
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}

.box {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    max-width: 600px;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: scale(1.05);
}

h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.counter {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffc0cb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.imagesbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.imagesbox img {
    width: 150px;
    border: 5px solid #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.imagesbox img:hover {
    transform: scale(1.1);
}

.paragraph {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5em;
    color: #333;
    margin: 50px auto;
    line-height: 1.6;
    transition: transform 0.3s ease-in-out;
}

.paragraph:hover {
    transform: scale(1.05);
}

.heart {
    position: absolute;
    top: -50px;
    font-size: 24px;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}
