@charset "utf-8";


body {
    margin: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}



/* Canvas */
canvas {
    margin: 0px auto 0px auto;
    box-sizing: border-box;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}

#main {
    width: 50vw;
    min-width: 960px;
    margin: auto;
}

.Title {
    background-color: #EEEEEEEE;
    display: block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: fit-content;
    padding: 40px;
    font-size: 3em;
    margin-top: 18vw;
    box-shadow: 0 0 8px 8px #EEEEEEEE;
}

.MinorTitle {
    background-color: #EEEEEEEE;
    display: block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: fit-content;
    padding: 40px;
    font-size: 2.2em;
    margin-top: 2vw;
    box-shadow: 0 0 8px 8px #EEEEEEEE;
}

.Text {
    background-color: #EEEEEEEE;
    display: block;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: fit-content;
    padding: 40px;
    font-size: 2em;
    margin-top: 5vw;
    box-shadow: 0 0 8px 8px #EEEEEEEE;
}

.twoColumns {
    display: flex;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 40px;
    flex-flow: row wrap;
    font-size: 1.25em;
}

.columnItem {

    box-sizing: border-box;
    box-shadow: 0 0 8px 8px #EEEEEEEE;
    width: 46%;
    height: fit-content;
    margin: 1%;
    background-color: #EEEEEEEE;
}

.columnItemV2 {

    box-sizing: border-box;
    box-shadow: 0 0 8px 8px #EEEEEEEE;
    width: 30%;
    height: fit-content;
    margin: 1%;
    background-color: #EEEEEEEE;
}

/* link styles */
a {
    color: #02b875;
    text-decoration: none;
}

a:hover {
    color: #02b875;
    text-decoration: underline;
}

a.header{
    color: black;
}

a.header:visited{
    color: black;
}

a:visited {
    color: #008353;
}

.hidden {
    opacity: 0;
    transform: translateX(-100%);
}

.show {
    opacity: 1;
    transform: translateX(0);
    transition-property: opacity;
    transition-duration: 1s;
    transition-property: transform;
    transition-duration: 1s;
}

@media(prefers-reduced-motion) {
    .show {
        transition: none;
    }
}

@media only screen and (max-width: 980px) {

    #main {
        width: 100%;
        min-width: 0px;
    }
}