/* General Styles */
body {
    background-image: url(meatoau.jpg);
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;/* General Styles */
    body {
        background-image: url(meatoau.jpg);
        background-size: cover;
        background-position: center;
        margin: 0;
        padding: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        font-family: 'Courier New', Courier, monospace;
        position: relative;
    }
    
    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    h1 {
        font-size: 8vw;
        font-weight: bold;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px gold, 0 0 5px orange;
        margin-bottom: 20px;
        animation: glow 1.5s infinite alternate;
    }
    
    @keyframes glow {
        0% {
            text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px gold, 0 0 5px orange;
        }
        100% {
            text-shadow: 3px 3px 20px rgba(255, 255, 0, 0.8), 0 0 35px gold, 0 0 15px orange;
        }
    }
    
    button {
        padding: 15px 30px;
        font-size: 1.5em;
        margin-top: 20px;
        border: none;
        background-color: gold;
        color: brown;
        cursor: pointer;
        border-radius: 10px;
        transition: background-color 0.3s, transform 0.3s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    button:hover {
        background-color: orange;
        transform: translateY(-2px);
    }
    
    .hidden {
        display: none;
    }
    
    #thankYouMessage {
        font-size: 1.5em;
        background: rgba(255, 255, 255, 0.7);
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
        color: black;
    }
    
    /* Flower Animation */
    .flower {
        position: absolute;
        width: 50px; /* Size of flower */
        height: 50px;
        background-image: url('flower.png'); /* Use a flower image */
        background-size: contain;
        background-repeat: no-repeat;
        animation: fall 3s forwards; /* Animation for falling */
    }
    
    @keyframes fall {
        0% {
            transform: translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateY(100vh); /* Fall to bottom of viewport */
            opacity: 0; /* Fade out */
        }
    }
    
    color: white;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

h1 {
    font-size: 8vw;
    font-weight: bold;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px gold, 0 0 5px orange;
    margin-bottom: 20px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px gold, 0 0 5px orange;
    }
    100% {
        text-shadow: 3px 3px 20px rgba(255, 255, 0, 0.8), 0 0 35px gold, 0 0 15px orange;
    }
}

button {
    padding: 15px 30px;
    font-size: 1.5em;
    margin-top: 20px;
    border: none;
    background-color: gold;
    color: brown;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

button:hover {
    background-color: orange;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

#thankYouMessage {
    font-size: 1.5em;
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: black;
}

/* Flower Animation */
.flower {
    position: absolute;
    width: 50px; /* Size of flower */
    height: 50px;
    background-image: url('flower.png'); /* Use a flower image */
    background-size: contain;
    background-repeat: no-repeat;
    animation: fall 3s forwards; /* Animation for falling */
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh); /* Fall to bottom of viewport */
        opacity: 0; /* Fade out */
    }
}

marquee {
    letter-spacing: 10px;
    
}
