/* Fonts */
@font-face {
    font-family: 'Open Sans';
    src: url('/static/public/fonts/open-sans/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Sansation';
    src: url('/static/public/fonts/sansation/Sansation_Regular.ttf') format('truetype');
}

:root {
    --max-width: 1080px;
    --container-width: 80%;
}

body {
    margin: 0px;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Open Sans';
    color: var(--main-font-color);
    background-color: var(--main-header-background);
}

a {
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100vw;
}

.bold {
    font-weight: bold;
}

.left-space-sm {
    margin-left: 5px;
}

.left-space-md {
    margin-left: 10px;
}

.left-space-lg {
    margin-left: 15px;
}

.left-space-xl {
    margin-left: 20px;
}

.right-space-sm {
    margin-right: 5px;
}

.right-space-md {
    margin-right: 10px;
}

.right-space-lg {
    margin-right: 15px;
}

.right-space-xl {
    margin-right: 20px;
}

.bottom-space-xl {
    margin-bottom: 20px;
}

.content .row {
    display: flex;
    width: var(--container-width);
    max-width: var(--max-width);
    padding-bottom: 60px;
}

.content .row-wrap {
    flex-wrap: wrap;
}

.content .between {
    justify-content: space-between;
}

.content .col {
    display: flex;
    flex-direction: column;
}

.content .row .justified {
    justify-content: space-between;
}

.content .full {
    width: var(--container-width);
    max-width: 1080px;
}

.content .half {
    width: 50%;
}

.content a {
    color: var(--main-font-active-color);
}