/**
* Core
**/
body {
    color: #1E2019;
    background-color: #42F0DE;
    font-family: 'IBM Plex Sans Text';
}

/**
* Classes
**/
.btn {
    margin-bottom: .5em;
}

.small {
    font-size: 14px;
}

/**
* Color Classes
**/
.light {
    color: #ffffff;
}

.dark {
    color: #1E2019;
}

.purple {
    color: #694873;
}

.teal {
    color: #42F0DE;
}

.pink {
    color: #F9B9C3;
}

.red {
    color: #F9B9C3;
}


/**
* Navigation
**/
.nav-item, .navbar-brand {
    font-family: 'IBM Plex Sans Bold';
}

/**
* Login
**/
#centeredContainer {
    width: 100%;
    max-width: 800px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/**
* Content
**/
#main {
    width: 1200px;
    margin: 0 auto;
    padding: 2.5em 0;
}

#sectionGrey {
    width: 100%;
    background: #f8f9fa;
}

/**
* Footer
**/
#footer {
    width: 100%;
}

#footerContent {
    width: 97%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5em 0;
    text-align: center;
    color: #1E2019;
}

#footerContent a {
    color: #1E2019;
}

#footerContent a:hover {
    color: #1E2019;
    text-decoration: none;
}

/**
* Font Family
**/
@font-face {
    font-family: 'IBM Plex Sans Bold';
    src: url('../font/IBMPlexSans-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Medm';
    src: url('../font/IBMPlexSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../font/IBMPlexMono.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Sans Text';
    src: url('../font/IBMPlexSans-Text.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}