body, html {
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#container {
    text-align: center;
    position: relative;
}

#chaosButton {
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
}

#chaosContent {
    margin-top: 20px;
}

.hidden {
    display: none;
}

#chaosContent img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

#textContainer {
    width: 80%;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8); /* Optional: add a semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

#textContainer p {
    font-size: 1.5rem;
    margin: 10px 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#textContainer p.visible {
    opacity: 1;
}
