@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

body {
    background-color: #F1EAE0;
    color: #252B4D;
    font-family: Montserrat, Verdana, sans-serif;
    font-weight: 400;
    font-size: 150%;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Oswald, 'Courier New', Courier, monospace !important;
    font-weight: 400;
    padding-left: 50px;
}

h1 {
    font-size: 400%;
}

.colorboxright {
    padding: 20px 50px;
    border-radius: 20px 0px 0px 20px;

    align-items: center;
    justify-content: center;

    text-align: justify;
}
.colorboxleft {
    padding: 20px 50px;
    border-radius: 0px 20px 20px 0px;

    align-items: center;
    justify-content: center;
    
    text-align: justify;
}

.cols {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}

#LeftColumn {
    display: flexbox;
}
#RightColumn {
    display: flexbox;
    text-align: right;
    width: 100vw;
    padding-right: 50px;
}

#Header {
    display: none;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #252B4D;
}
a:hover {
    color: grey;
}

hr {
    background-color: #252B4D;
    height: 1px;
    border: none;
}



@media (max-width:800px) {
    .cols {
        flex-direction: column;
    }
    .colorboxleft {
        border-radius: 0px;
        width: auto !important;
        margin-right: 0px !important;
    }
    .colorboxleft > img {
        width: 80vw;
    }

    .colorboxright {
        border-radius: 0px;
        width: auto !important;
        margin-left: 0px !important;
    }

    #Header {
        display: block !important;
    }

    body {
        font-size: 100%;
    }

    #RightColumn {
        padding-right: 0px !important;
    }

    ul {
        padding-right: 40px
    }
}