
.newsletter-container {
    max-width: 100%;
    display: flex;

    flex-direction: row;
    justify-content: center;    
    align-items: center;
    margin: 20px;
    margin-bottom: 100px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}



.newsletter-container a {
    text-decoration: none;
    color: #ffffff;
    width: 50%;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #00adb5;
    transition: background-color 0.3s, color 0.3s;
}

.newsletter-container a:hover {
    background-color: #007f83;
    color: #e0f7f8;
}

.newsletter-container div {
    margin-right: 20px;
    font-size: 16px;
    color: #333333;
}

.newsletter-container div p {
    margin: 0;
    padding: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-container div {
        margin: 0 0 15px 0;
    }

    .newsletter-container a {
        width: 100%;
    }
}


/* PARTY SPARKLE */
.party-boom-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 999999;
}

.party-boom-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: partyBoomMove 1.4s ease-out forwards;
    opacity: 0.9;
}

@keyframes partyBoomMove {
    0% {
        transform: translate(0,0) scale(0.2);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) scale(1.6);
        opacity: 0;
    }
}