:root {
    --primary-color: #f6c222 !important;
    --secondary-color: #133451 !important;
    --shaded-background-color: #FAF9F2;
    --menu-text-color: var(--secondary-color);
    --text-large-size: 28px;
    --text-medium-size: 20px;
    --text-default-size: 16px;
    --content-page-width-mobile: 90%;
    --content-page-width-desktop: 50%;
    --content-padding: 20px;
    --content-spacing: 20px;
    --desktop-min-width-transition-width: 1200px;
}

* {
    font-family: 'TT Norms', sans-serif;
    font-size: var(--text-default-size);
    color: var(--secondary-color);
}

body {
    margin: 0px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white !important;
}

a {
    text-decoration: none;
}

p a, li a {
    font-weight: bold;
    text-decoration: underline;
}

h2 {
    font-size: var(--text-large-size) !important;
}

h3 {
    font-size: var(--text-medium-size) !important;
}

.image-wrapper-object {
    max-width: 100%;
}

.App {
    min-height: 0px !important;
    height: 0px;
}

.relative {
    position: relative;
    width: 100%;
    height: 100%;
}

.demo-page {
    display: none;
}

.text-bold, strong {
    font-family: 'TT Norms Bold', sans-serif;
}

.center-margin {
    margin: auto;
    width: var(--content-page-width-mobile);
}

.title-text {
    font-size: var(--text-large-size);

    * {
        font-size: var(--text-large-size);
    }  
}

.header-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collapse-box {
    border: 2px solid var(--secondary-color);
    cursor: pointer;
}

.checkbox {
    display: none; 
}

.checkbox + label {
    display: block;
    padding: var(--content-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox + label:after {
    content: "+";
    font-size: 30px;
}

.checkbox:checked + label:after {
    content: "-";
}

.checkbox + label + .collapse-box-text {
    display: none;
    margin: 0px 20px 20px 20px;
}

.checkbox:checked + label + .collapse-box-text {
    display: block;
}

.primary-button {
    border: none;
    cursor: pointer;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px;
    font-weight: bold;
    text-decoration: underline var(--secondary-color);
    transition: text-decoration-color 0.3s;

    &:hover {
        text-decoration-color: white;
    }
}

.secondary-button {
    background-color: white;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    padding: 10px;
    font-weight: bold;
    text-decoration: underline white;
    transition: text-decoration-color 0.3s;

    &:hover {
        text-decoration-color: var(--secondary-color);
    }
}

@media (min-width: 1200px) {
    .center-margin {
        width: var(--content-page-width-desktop);
    }

    .banner-title {
        font-size: 62px;
        width: 100%;
    }
}
