body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.spoiler {
    margin-bottom: 10px;
    border: 1px solid white;
    border-radius: 5px;
    overflow: hidden;
}

.spoiler-header {
    padding: 10px;
    background-color: #333;
    cursor: pointer;
    user-select: none;
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 10px;
}

.spoiler-content p {
    margin: 10px 0;
}

.spoiler.active .spoiler-content {
    max-height: 100px; /* Adjust as necessary */
    padding: 10px;
}