h1, h2, h3, h4, h5, h6, p, a, ul, li, ol {
    margin: 0;
    padding: 0;
}

body {
    background: url(../media/bg.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 2rem 0rem 
}

body::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
}

.container {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 24px;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    width: min(100%, 650px);
    padding: 1rem;
}

.content h1{
    font-size: 1.5rem;
    line-height: 2.5rem;
}

#faq-list{
    display: flex;
    flex-direction: column;
    row-gap: .25rem;
}


.faq-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
}

.faq-button{
    text-align: left;
    padding: 1rem;
    background-color: transparent;
    border: none;
    font-weight: 500;
}

.faq-answer{
    padding: 1rem;
    padding-top: .25rem;
}