/* REUSABLE CLASSES */
.inline {
    display: inline-block;
}

.block {
    display: block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.hidden {
    visibility: hidden;
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

.svg-shadow {
    filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.3));
}

.fit-content {
    width: fit-content;
}

.gap {
    gap: 0.5rem;
}


/* DEFAULT */

:root {
    font-size: 16px;
    font-family: 'Inter';
    --text: #636363;
    --primary2: #0f3459;
    --secondary: #c3a374;
    --accent: #e3931c;
    --transition-speed: 300ms;
    --box-shadow: .3rem .3rem .6rem #c8d0e7, -.2rem -.2rem .5rem #ffffff;
}

::selection {
    color: #ffffff;
    background: #6275ed;
}

body, a {
    font-family: Roboto, sans-serif;
    color: #000;
}

h1 {
    font-size: 2rem;
    margin-bottom: .75rem;
    margin-top: .5rem;
    font-weight: 500;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: .5rem;
    margin-top: .25rem;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .25rem;
    font-weight: 300;
}

h4 {
    font-size: 1.25rem;
    font-weight: 200;
}

h5 {
    font-size: 1rem;
    font-weight: 100;
}

h6 {
    font-size: 0.75rem;
    font-weight: 100;
}

p {
    line-height: 125%;
}

a {
    text-decoration: none;
}

.a {
    text-decoration: underline solid var(--primary2);
    text-decoration-thickness: 0.2rem;
    transition: var(--transition-speed);
}

.a:hover {
    text-decoration: underline solid var(--accent);
    text-decoration-thickness: 0.2rem;
}

.button {
    margin: 0 0.2rem;
    border: var(--primary2);
    color: white;
    background-color: var(--primary2);
    padding: 0.5rem;
    border-radius: 0.2rem;
    border-color: var(--primary2);
    transition: var(--transition-speed);
    outline: 0.1rem solid var(--primary2);
    box-shadow: var(--box-shadow);
    font-weight: bold;
}

.button:hover {
    color: var(--primary2);
    background-color: white;
}

.submit-button {
    outline: none;
    border: none;
    background-color: #FCFCFD;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    color: #36395A;
    cursor: pointer;
    padding: 1rem;
    margin-top: 1rem;
    transition: var(--transition-speed);
    touch-action: manipulation;
    font-size: 1.1rem;
}

.submit-button:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transform: translateY(-0.1rem);
}

.container {
    background-color: white;
    border-radius: 0.4rem;
    box-shadow: var(--box-shadow);
    padding: 0.5rem;
    margin: 0.5rem 0.5rem;
    flex: 1 0 auto;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

small {
    font-size: 0.8rem;
}