* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

@font-face {
    src: url('../font/Objectivity/Objectivity-Regular.otf');
    font-family: regular;
}

@font-face {
    src: url('../font/Objectivity/Objectivity-Bold.otf');
    font-family: bold;
}

/* ##########
	TYPO
############ */

body {
    font-family: regular;
    width: 100%;
}

p {
    text-align: justify;
}

a {
    text-decoration: none;
}

.rotate {
    transform: rotate(90deg);
}


.beige {
    background-color: #F6F5F0;
}

.no-pb {
    padding-bottom: 0;
}

#burger {
    display: none;
    transition: 0.5s;
}

.alert {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
    font-size: 0.7em;
    width: 80%;
}

.danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

nav {
    display: flex;
    flex-wrap: wrap;
    background-color: #BCDBDA;
    align-items: center;
    padding: 1em 3em;
    box-sizing: border-box;
}

nav img {
    height: 3em;
}

nav div {
    margin-left: 5%;
    width: 80%;
}

nav div a {
    margin-right: 5%;
    font-family: 'regular';
    text-transform: uppercase;
    color: #6D8A95;
}