/* PUT STYLES RELATED TO LAYOUT */


/* LOAD FONTS */

@font-face{
    font-family: 'ProximaNova Regular';
    src: url('/public/front/fonts/ProximaNova/Mark Simonson - Proxima Nova Alt Condensed Regular.otf');
}

@font-face{
    font-family: 'ProximaNova';
    src: url('/public/front/fonts/ProximaNova/Mark Simonson - Proxima Nova Alt Condensed Semibold.otf');
    font-weight: 500
}
@font-face{
    font-family: 'ProximaNova';
    src: url('/public/front/fonts/ProximaNova/Mark Simonson - Proxima Nova Alt Condensed Semibold.otf');
    font-weight: 600
}
@font-face{
    font-family: 'ProximaNova';
    src: url('/public/front/fonts/ProximaNova/Mark Simonson - Proxima Nova Alt Extra Condensed Bold.otf');
    font-weight: 800
}

@font-face{
    font-family: 'ProximaNova';
    src: url('/public/front/fonts/ProximaNova/Mark Simonson - Proxima Nova Alt Condensed Regular Italic');
    font-style: italic
}

body{
    font-family: 'ProximaNova Regular';
}

.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-content {
    flex: 1;
}

.header-nav-container {
    background-color: rgba(255, 255, 255, 0.99);
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#header-nav {
    font-size: 0.8em;
}

#header-nav .nav-item {
    margin: 0 5px;
}

.full-width-container {
    height: 100vh;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-footer {
    font-size: 0.8em;
    border-top: 1px solid #aaa;
    padding: 20px 40px;
    color: rgb(45, 67, 89);
}

.nav-link.active {
    color: rgb(0, 119, 255) !important;
}

.navbar-toggler:focus {
    box-shadow: none!important;
    background-color: hsla(240, 50, 60, 1) !important;
    background-color: rgb(232, 235, 235);
}

.navbar-toggler.collapsed {
    background: white;
    box-shadow: none!important;
}

.navbar-brand{
    font-size: 1.5em;
    font-weight: 500;
}

.divider{
    width: 500px;
    max-width: 80%;
    height: 3px;
    border-radius: 5px;
    background-color: #86a2f4;
    margin: 40px auto;
}

.hero-container{
    min-height: 60vh;
    margin-bottom: 30px;
}

.quote-container{
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.quote-text{
    font-weight: bold;
    font-size: 1.1em;
}
.quote-by{
    margin: 10px 0;
}





