@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: #121212;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    z-index: 1;
    position: relative;
}

.greeting h1 {
    font-size: 4em;
    margin-bottom: 10px;
}

.greeting p {
    font-size: 1.5em;
    margin-bottom: 40px;
}

/* Coupon Section */
.coupon-section {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.coupon-code {
    font-weight: bold;
    font-size: 1.8em;
    color: #66befd;
}

.copy-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #66befd;
    border: none;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #66befd;
}

/* Confetti Canvas in the background */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1; /* Place confetti behind the main content */
}

/* Text Animation */
.animated-text {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #66befd, 0 0 20px #66befd, 0 0 30px #66befd, 0 0 40px #66befd;
    }
    to {
        text-shadow: 0 0 20px #90ff86, 0 0 30px #90ff86, 0 0 40px #90ff86, 0 0 50px #90ff86;
    }
}