:root {
    --white: #FFF2EB;
    --brun: #803813;
    --pink: #EFD2C3;
    --black: #000000;
}

@font-face {
    font-family: seasons;
    src: url('/fonts/BodoniflfRoman-vmAD.ttf');
}

@font-face {
    font-family: seasons-itit;
    src: url('/fonts/Fontspring-theseasons-ltit.otf');
}

h1 {
    font-weight: 600;
    font-family: seasons, sans-serif;
}

h2 {
    text-align: center;
    font-family: seasons, sans-serif;
    color: var(--brun);
    text-transform: uppercase;
}

h2.big {
    font-size: 50px;
}

.citation {
    font-family: seasons, sans-serif;
    text-align: center;
    font-size: 20px;
}

.italic {
    font-family: seasons, sans-serif;
    font-style: italic;
}

h3 {
    text-align: center;
    font-family: seasons, sans-serif;
    color: var(--brun);
}

figure img {
    height: 320px !important;
    object-fit: contain;
}

figcaption {
    color: var(--brun);
    text-align: center;
    font-weight: 600;
}

li {
    list-style: none !important;
}

li i {
    color: var(--brun);
}

.btn-primary {
    background-color: var(--brun);
    border: solid 2px var(--brun);
    font-weight: 600;
    font-family: sans-serif;
}

.btn-primary:hover {
    color: var(--brun);
    border: solid 2px var(--brun);
    background-color: white;
}

.btn-primary:active {
    color: var(--brun) !important;
    border: solid 2px var(--brun) !important;
    background-color: white !important;
}

.navbar {
    padding: 15px 15%;
    box-shadow: 0 0 5px 0 var(--black);
    width: 100vw;
    font-family: seasons, sans-serif;
}


section {
    padding: 2% 15%;
    margin: 0 !important;
    background-color: var(--white);
}

section.header {
    margin-top: 70px !important;
    text-align: center;
}

section.header .btn-primary {
    margin: 30px 0 !important;
}

section.brun {
    color: white;
    background-color: var(--brun);
}

section.brun h2 {
    color: white;
}

section.brun .btn {
    border: solid 2px white !important;
}

section.brun a {
    color: white;
}

section.pink {
    background-color: var(--pink);
}

footer {
    background-color: var(--brun);
    color: white;
}

footer a {
    color: white;
}

.img-fluid {
    width: 100%;
}


.logo {
    max-width: 100%;
    height: auto;
}

.grid-img{
  display: grid;
  place-items: center;
}

@media screen and (max-width: 640px) {
    h2.big {
        font-size: 40px;
        text-align: start !important;
    }
}

