.main-block-container {
    width: 100%;
}

.page-header, footer, footer.footer-beige {
    background-color: #DBE8D6;
    border: 6px solid #DBE8D6;
    width: 100%;
}

.pdfDiv {
    width: 100%;
}

.pdfDiv1 {
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.pdfDiv2 {
    background-color: rgba(219, 232, 214, 0.25);
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.pdfTitle {
    font-family: "multicolore", sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    border-bottom: var(--palette-green) 0.1rem solid;
    display: block;
    width: 100vw;
    padding: 1rem;
}

.pdfFrame {
    width: 80%;
    margin: auto;
}

.pdfButton {
    display: inline-block;
    box-sizing: content-box;
    background-color: #DBE8D6;
    width: 40%;
    color: black;
    font-size: small;
    font-weight: bold;
    text-decoration: none !important;
    text-align: center;
    border-radius: unset;
    border: unset;
    transition: all 0.2s ease-in-out;
}

.pdfButton:hover {
    background-color: var(--palette-green);
    color: white;
}

.pdfButton.active {
    background-color: var(--palette-green);
    color: white;
}

/* Defining for mobile*/
@media only screen and (max-device-width: 768px) {
    .pdfButton {
        width: fit-content;
    }
}