h1 {
    display: block;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    color: var(--brown);
}

main p {
    display: block;
}

p.explanation {
    font-size: 18px;
    margin-bottom: 20px;
    b {
        color: var(--brown);
    }
}

.info-block {
    display: flex;
    align-items: center;
    column-gap: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f1ce98;
    svg {
        width: 40px;
        min-width: 40px;
    }
    a {
        font-weight: bold;
        color: var(--brown);
    }
}

summary {
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--brown);
    cursor: pointer;
    list-style: none;
    &::-webkit-details-marker {
        display: none;
    }
    &::before {
        content: "+";
        margin-right: 10px;
        font-size: 24px;
        font-weight: bold;
        color: var(--brown);
    }
}

details[open] > summary::before {
    content: "-";
}

details details, details p {
    padding-left: 28px;
}

details p {
    display: block;
    margin-bottom: 10px;
}

details a {
    font-weight: bold;
    color: var(--brown);
}

.level-1 {
   font-size: 24px;
}

.level-2 {
    font-size: 20px;
}

.level-3 {
    font-size: 18px;
}

article b {
    font-weight: bold;
    color: var(--brown);
}

