
html, body {
  font-family: "montserrat";
  margin: 0;
  background: white;
  font-size:16px;
}

body {
    padding-top:64px;
}

* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: scaleY(0.98) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.sommaire {
  text-align:center;
  list-style-type: none;
}

@font-face{
    font-family: "balthazar";
    src: url('../fonts/Balthazar-Regular.ttf') format('truetype');
}
@font-face{
    font-family: "majesti-h";
    src: url('../fonts/majesti-banner-heavy.ttf') format('truetype');
}

@font-face{
    font-family: "montserrat";
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}


#page {
  margin: 0 20vw 0 20vw;
}

@media only screen and (width <= 1200px) {
    #page{
        margin: 0 4vw 0 4vw;
    }
}

h1, h2, h3 {
  color: #231f20;
  font-family: "balthazar";
}

h1 {
    text-align:center;
    font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/**** GAMMES ****/
    .table-gamme .line-title {
        background-color: #869DBD;
        text-align:center;
    }

    .table-gamme td:not(.line-title) {
        background-color:white;
    }
/*******/


    .annonces {
        display: flex;
        flex-wrap: wrap;
        text-align:center;
        list-style-type: none;
    }
    .annonce {
        width: 18rem;
        font-family: "montserrat";
        flex-grow: 1;
        display:inline-block;
        margin:2vh 2vw;
    }

    .annonce-title {
        border-bottom:1px solid rgba(0, 0, 0, 0.125);
        text-align:center;
    }

    .annonce-texte {
        text-align:left;
    }

    .annonce-metadata {
        text-align: center;
    }


.list-group-item {
    text-align:center;
}

#footer {
    background-color:#03224C;
    margin-top:10vh;
}
