html, body {
    margin: 0;
    padding: 0;
}

html {
    background: url(images/hero.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  scroll-behavior: smooth
}

.fullpage {
    width: 100%;
    height: 100vh;
    position: relative;
}

.xycentered-block {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fixed-top {
    position: fixed;
    top: 0;
}

.navbar {
    display: flex;
    width: 100%;
    z-index: 99999;
}

.navbar a {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5em 1em;
}

.cardlist {
    padding-top: 2.5em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.cardlist > div {
    padding: 1rem;
    flex: 1 400px;
    margin: 0.5em;
}

.cardlist img {
    width: 100%;
    object-fit: contain;
}

.lightred {
    background-color: rgba(255,0,0,0.3);
}

.carditem {
    border-radius: 0.5em;
    background: #fff;
}
.lightwhite {
    background-color: rgba(255,255,255,0.3);
}

#accueil div img {
    height: 50vh;
}