body {
    background: linear-gradient(90deg, #52ee62, #05913b, #23a6d5, #2320d6);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    /* height: 100vh; */
    height: 100%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a {
    color: #000;
    text-decoration: none;
}

h1 {
    font-size: 2.3rem;
    color: white;
}

h2 {
    margin-top:35px;
}
h3 {
    margin-top:35px;
    margin-bottom:30px;
}

.select_sections {
    font-size: 1.2rem;
    /* min-height: 50px; */
    width: 100%;
    padding: 10px;
    border-radius: 6px;
}

.menu_button {
    width: 100%;
    margin-top: 5px;
    font-size: 1.3rem;
}

.content {
    min-height: 80vh;
    background-color: #e1d9d9ad;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
    border-radius: 6px;
}

.menu {
    transition: height 500ms ease;
    height: auto;
    overflow: hidden;
}

.menu_open {
    height: auto !important;
}

.img_width_100 {
    width: 100%;
}

.table_title {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #05913b55;
    /* font-weight: 500; */
    font-size: 1rem;
}

.doc_row {
    margin-bottom:10px;
}

.green{
    background-color: #05913b55;
}
.warning {
    background-color: rgba(255, 0, 0, 0.568);
    width:100%;
    padding:20px;
    font-size: 2rem;
    color: white;
    border-radius: 3px;
    text-align: center;
}








@media (max-width: 992px) {
    .menu {
        height: 0px;
    }
}