body {
    background-color: #000;
    color: #555;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60vw;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
    font-size: large;
}

h2 {
    color: #560038;
}

#title {
    font-family: "Rubik Distressed", system-ui;
    font-size: 7rem;
    font-weight: 400;
    color: #560038;
    margin-top: 2em;
    margin-bottom: 0;
}

#tagline {
    color: #560038;
    font-size: 1.75rem;
    margin-top: -20px;
    margin-bottom: 5vh;
}

#menu {
    display: flex;
    gap: 20px;
    padding: 10px;
}

#menu a {
    color: #666;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 1s ease, color 1s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

#menu a:hover {
    color: #560038;
}

ul {
    text-align: left;
}

#faq-container {
    width: 800px;
    margin-top: 2rem auto;
    padding-top: 1rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    padding: 0.8rem;
    margin: 0;
    cursor: pointer;
}

.faq-item p {
    display: none;
    padding: 0.8rem;
    margin: 0;
    border-left: 3px solid #560038;
    border-bottom: 3px solid #560038;
}

.faq-item.active p {
    display: block;
}

#history p {
    text-align: left;
}

footer {
    margin: 30px;
}

@media (max-width:1000px){
    #title {
        font-size: 4rem;
    }

    body {
        width: 80vw;
    }

    #faq-container {
        width: 90vw;
        margin-top: 2rem auto;
        padding-top: 1rem;
    }
}