body {
    min-height: 100vh;
    overflow: auto;
}

.navbar {
    display: none;
}

header {
    height: 10vh;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 5rem;
    background: #f8f6ed;
    border-bottom: 2px solid #009983;
}

#doc_title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: unset;
}

.title {
    color: #005D50;
    font-size: 1.2rem;
}

.card {
    border: none;
}

#content .row>div:nth-child(2) .card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1.5rem;
    padding: 1rem 3rem;
}

.card-header {
    background-color: unset;
}

.card-title {
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

h5 img {
    margin-right: 0.5rem;
}

.level_title {
    font-weight: bold;
}

.level_title.most_dangerous {
    color: #FF0000;
}

.level_title.dangerous {
    color: #F7931E;
}

.level_title.warning {
    color: #FCC821;
}

.level_title.care {
    color: #009983;
}

.level_title.safe {
    color: #8CC63F;
}

.level_content {
    flex: 60%;
}

@media (max-width: 1440px) {
    .level_content {
        flex: 40%;
    }
}

@media (max-width: 1024px) {
    #content .row>div:nth-child(2) .card-body {
        gap: 0.8rem;
    }

    .level_title {
        flex: 100%;
    }

    .level_content {
        width: 70%;
    }

    .level_img {
        width: 30%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 4rem;
    }

    #content .row>div:nth-child(2) .card-body {
        padding: 1rem;
    }

    .level_title,
    .level_content,
    .level_img {
        width: 100%;
    }

    .level_title {
        order: 1;
    }

    .level_content {
        order: 2;
    }

    .level_img {
        text-align: center;
        order: 3;
    }

    .level_img img {
        width: 65%;
    }

    .pic img {
        width: 100% !important;
    }

}

@media (max-width: 568px) {
    header {
        padding: 0 3rem;
    }

    .level_img img {
        width: 100%;
    }
}

@media (max-width: 320px) {
    header {
        padding: 0 2rem;
    }

    .card-header {
        padding: 0.5rem 0;
    }

    #content .row>div:nth-child(2) .card-body {
        padding: 1rem 0;
    }
}