@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}


.container {
    flex: 1;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-align: center;
}

.intro-message h2 {
    font-size: 1.8em;
    color: #5c5c5c;
    margin-bottom: 20px;
    font-weight: 400;
}

.main-image {
    max-width: 85%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#content-display {
    margin-top: 20px;
    padding: 25px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
    min-height: 50px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#content-display.hidden {
    display: none;
}

/* Accordion Styles */
#accordion-container {
    width: 100%;
    margin: 20px 0;
    text-align: left;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: #B0E0E6;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #a3d4db;
}

.accordion-button.active {
    background-color: #9accd2;
}

.accordion-content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
    white-space: pre-wrap;
    font-size: 1.1em;
    color: #444;
    padding: 15px 0;
    margin: 0;
}

.confetti-button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 15px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.confetti-button:hover {
    background-color: #ff85c1;
}

.footer {
    text-align: center;
    padding: 20px;
    color: #000000;
    width: 100%;
    font-size: 20px;
}

@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    .intro-message h2 {
        font-size: 1.5em;
    }
}
