@charset "UTF-8";
/* ===============
ÉLÉMENTS DIVERS
=============== */
/* VARIABLES */
/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
/* TYPOS */
* {
  font-weight: normal;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ===============
LE SITE
=============== */
@keyframes rotate-bg-color {
  0% {
    background-color: #e84e0f;
  }
  25% {
    background-color: #f4a700;
  }
  50% {
    background-color: #ef9aad;
  }
  75% {
    background-color: #00a29e;
  }
  100% {
    background-color: #e84e0f;
  }
}
body {
  animation: rotate-bg-color 20s infinite;
  padding: 400px 30px 0 30px;
  text-align: center;
}
body * {
  box-sizing: border-box;
}
body header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body header .jeune {
  width: 200px;
  height: auto;
}
body header .logo {
  max-width: 400px;
}
body main {
  margin-top: 30px;
}
body main p {
  color: #ffffff;
  font-size: 1.2em;
}/*# sourceMappingURL=style.css.map */