:root {
    --navbg: rgb(255, 255, 255);
    --navmbbuttonbg: rgb(245, 245, 245);
    --navmbbg: rgb(240, 240, 240);
    --bg: rgba(211, 211, 211, 0.46);
    --icon: rgba(0, 68, 255, 0.736);
    --text: rgb(112, 109, 109); 
    --textHover: rgb(0, 0, 0);
    --bgHover: rgb(223, 222, 222);
    --question: rgb(18, 62, 143);
}

.hero {
    padding-bottom: 3rem !important;
}

.title {
    max-width: 60rem;
    margin: auto;
}

.title img {
    object-fit: cover;
    height: 100% !important;
    max-width: 100%;
    border-radius: 1rem;
}

.important {
    color: var(--question);
    margin: 2rem 0;
    text-align: center;
    padding: 0 1rem;
}

.attention {
    font-weight: bold;
    color: var(--icon);
}

.questions {
    background-color: var(--navmbbuttonbg);
    padding: 3rem 0;
    max-width: 80rem;
    margin: auto;
    border-radius: 1.5rem;
    padding-left: 5rem;
}

.questions li {
    font-weight: bold;
    padding: .5rem;
    color: var(--icon);
}

.questions i {
    padding-left: 1.8rem;
}

.questions a {
    display: flex;
    width: 100%;
}

.questions a:hover {
    text-decoration: underline;
    text-decoration-color: var(--icon);
}

.questions a::after {
    content: "";
}

@media (max-width: 40rem) {
    .hero {
        width: 100% !important;
    }
    .questions {
        border-radius: 0;
    }
}

.answers {
    width: calc(100% - 3rem);
    margin: auto;
    max-width: 126rem;
    padding-bottom: 3rem;
}

.answers div {
    width: 100%;
}

.question {
    font-size: 3rem;
    color: var(--question);
    margin: 2rem 0;
}

.answers p {
    text-align: left;
    font-size: 1.6rem;
}