main{
    font-family: "Montserrat", Arial, sans-serif;
}

.main-bg{
    margin-top: -6.2rem;
    width: 100%;
    height: 25vh;
    background-image: url(../assets/images/armaduras-japonesas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.questions-answers{
    max-width: 75%;
    margin: 2rem auto 5rem auto;
}

.question{
    text-align: center;
    border: solid 1px black;
    padding: 1rem 2rem;
    background-color: var(--bg-black-middle);
    border-radius: 1rem;
    
    margin-bottom: 1rem;
    cursor: pointer;
}

.question:hover{
    background-color: var(--bg-black-primary);
}

.answer{
    text-align: center;
    font-weight: 800;
    font-style: italic;
    
    border: solid 1px black;
    padding: 10px;
    border-radius: 1rem;
    
    margin-bottom: 2rem;

    display:none;
}

.answer p{
    margin-top: 1rem;
}

.active{
    display: inherit;
}

@media(min-width: 1400px){
    .questions-answers{
        margin: 10rem auto 10rem auto;
        padding-bottom: 10rem;
    }

}

@media (max-width: 768px){
    .main-bg{
        margin-bottom: 18rem;
    }
    .questions-answers{
        margin: 10rem auto 10rem auto;
        padding-bottom: 10rem;
    }
    .question{
        text-align: inherit;
        margin-top: 5rem;
    }

    .answer{
        text-align: justify;
    }

}

@media (max-width: 426px){
    .main-bg{
        margin-bottom: 2rem;
    }
}
