body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff; /* Light blue background */
}

header {
    background-color: #ff69b4; /* Hot pink for that ironic touch */
    color: white;
    text-align: center;
    padding: 1em 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #ff69b4; /* Match header color */
}

nav ul li {
    margin: 0 .9em;
}

nav ul li a{
    text-decoration: none;
    color: white;
    display:block;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

nav ul li a:hover {
    color: #000; /* Black for contrast */
    transform: scale(1.5);

}

main {
    padding: 2em;
    text-align: center;
}

footer {
    background-color: #ff69b4;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* @media (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5em 0;
    }
} */


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#play-button {
    padding: 1em 2em;
    font-size: 1.5em;
    color: white;
    background-color: #ff69b4;
    border: none;
    cursor: pointer;
}


#facts-cta, #facts-button {
    font-size: 1.5em; /* Make the text big */
    font-weight: bold;
    padding: .8em 1.4em; /* Add some padding */
    color: white;
    background-color: #ff0000; /* Start with red background */
    border: 5px solid #000; /* Black border */
    border-radius: 10px; /* Rounded corners */
    text-transform: uppercase; /* Uppercase text */
    text-align: center;
    cursor: pointer;
    animation: flash 1s infinite; /* Flashing animation */
    transition: transform 0.3s ease; /* Smooth transform */
    position: relative;
    z-index: 1000; /* Ensure it's on top */
}

#facts-cta:hover, #facts-button:hover {
    transform: scale(1.2); /* Scale up on hover */
}

@keyframes flash {
    0% { background-color: #ff0000; } /* Red */
    25% { background-color: #00ff00; } /* Green */
    50% { background-color: #0000ff; } /* Blue */
    75% { background-color: #ffff00; } /* Yellow */
    100% { background-color: #ff0000; } /* Red */
}

#factContent {
    display:none;
}


/* CONTACT FORM */
#contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 2em;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    margin-bottom: 1em;
}

.form-group {
    margin-bottom: 1em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.form-group input, textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

button[type="submit"] {
    padding: 0.75em 1.5em;
    font-size: 1em;
    color: white;
    background-color: #ff69b4;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ff1493;
}

@media (max-width: 600px) {
    #contact {
        padding: 1em;
    }

    .form-group input {
        font-size: 0.9em;
        
    }

    button[type="submit"] {
        font-size: 0.9em;
    }
}
