html {
    height: fit-content !important;
}
:root{
    --page-color1: #FBE9E7;
    --page-color2: #d1bad6;
}
.page-header, footer, footer.footer-beige {
    background-color: var(--page-color1);
    border: 6px solid var(--page-color1);
    width: 100%;
}

footer, footer.footer-beige {
    position: absolute;
    margin-bottom: 0;
}

.mpContainer {
    width: 100% !important;
    max-width: unset !important;
    margin: unset !important;
    padding: unset !important;
}

.source-container {
    border-color: var(--palette-red);
}
.title {
    display: flex;
    font-family: "Multicolore", sans-serif;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    width: 80%;
    font-weight: bold;
    margin:auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center !important;
    border-bottom: var(--palette-purple) 5px solid;
}

.right-box {
    background-color: var(--page-color2);
    color: #1a1e21 !important;

    display: flow;
    clear: right;

    width: 80%;
    margin-left: auto;
    margin-top: 100px;
    margin-right: 0;
    margin-bottom: 200px;

    padding: 1rem;
    border: 6px solid #d1bad6;
    border-radius: 1rem;

    text-align: center;
}
.last {
    margin-bottom: 50px !important;
}
.right-box-title {
    color: white;
    font-size: 1.5rem;
    font-family: "myriad-pro-semiextended", sans-serif;
    font-weight: bold;
    font-style: normal;

    display: flow-root;
    margin: auto;
    background-color: var(--palette-purple);
    height: fit-content;
    width: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;

    border: 6px solid var(--palette-purple);
    border-radius: 1rem;

    position: relative;
    margin-top: -3rem;
    margin-right: 2rem;
}
.AbstractText {
    display: block;
    width: 90%;
    height: fit-content;
    margin: auto auto;
    font-weight: normal;
    font-style: normal;
    text-align: justify;
    word-wrap: normal;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-sizing: content-box;
}

.left-box {
    background-color: var(--page-color1);
    color: #1a1e21 !important;

    display: flow;
    clear: right;

    width: 80%;
    margin: auto;
    margin-top: 100px;
    margin-left: 0;
    margin-bottom: 200px;

    padding: 1rem;
    border: 6px solid var(--page-color1);
    border-radius: 1rem;

    text-align: center;
}

.left-box-title {
    color: white;
    font-size: 1.5rem;
    font-family: "myriad-pro-semiextended", sans-serif;
    font-weight: bold;
    font-style: normal;

    display: flow-root;
    margin: auto;
    background-color: var(--palette-red);
    height: fit-content;
    width: fit-content;
    padding-left: 1rem;
    padding-right: 1rem;

    border: 6px solid var(--palette-red);
    border-radius: 1rem;

    position: relative;
    margin-top: -3rem;
    margin-left: 2rem;
}

/* Defining for mobile*/
@media only screen and (max-device-width: 768px) {
    .left-box {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .right-box {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

