/* GLOBAL ------------------------------------------------------------------------------------------------------------- */
:root {
    box-sizing: border-box;                   /*Prevent overflow/vertical scroll bars*/
    scroll-behavior: smooth;
    --yellow: #F0D400;
    --orange: #FF8800;
    --brown: #75461b;
    --red: #D30004;
    --pink: #FF479D;
    --violet: #A900D3;
    --blue: #1938FF;
    --green: #36C208;
    --white: #FFFFFF;
    --black: #1D1D1B;
    --grey: #b6b6b6;
    --silver: #9DADB8;
    --gold: #E0AF00;
    --offWhite: rgb(239, 240, 255);
    --dynamic-color: ${color.hex}; /* default value */
}

html {
    height: 100%;                             /* Force footer to end of page */
}

@font-face {
    font-family: 'Korium';
    src:    url(../fonts/t1korium-3kg.otf) format('opentype'),
            url(../fonts/t1korium-3kg.woff2) format('woff2'),
            url(../fonts/t1korium-3kg.woff) format('woff');
}
@font-face {
    font-family: 'Jakarta';
    src:    url(../fonts/PlusJakartaSans-Variable.ttf) format('truetype'),
            url(../fonts/PlusJakartaSans-Variable.woff2) format('woff2'),
            url(../fonts/PlusJakartaSans-Variable.woff) format('woff');
}


* {
    margin: 0px;                            /* Default margins */
    padding: 0px;                           /* Default padding */
    font-family: 'Korium', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    color: var(--color);
    scroll-behavior: smooth;                /* Smooth scrolling */
}

body {
    min-height: 100vh;                           /* Force footer to end of page */
    display: flex;                          /* Force footer to end of page */
    flex-direction: column;                 /* Force footer to end of page */
    background-color: var(--offWhite);         /* Background color behind left and right divs */
}

main {
    flex: 1 0 auto;                         /* Force footer to end of page */
    width: 100%;
    overflow-y: auto;                       /* Make header Sticky on the whole page */
    overflow-x: hidden;
    height: 100%;                           /* Force footer to end of page */  
}

button {
    cursor: pointer;
} 


/* HEADER ------------------------------------------------------------------------------------------------------------- */

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    width: auto;
    position:relative;
    top: 0;
    z-index: 1;
    margin-left: 5vw;
    margin-right: 5vw;
}

.header-button {
    width: 2vw;
    height: auto;
}

.header-home {
    width: 5vw;
    height: auto;
}

.home-about {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 2rem;
}

.page-title {
    font-family: 'Korium', sans-serif;
    font-size: 3rem;
    color: var(--black);
}