*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  min-width: 100%;
  height: 100%;
}

body {
  background-color: #bff0f7;
}

body.n main {
  background: url("img/n/background-desktop.jpg") top center no-repeat;
  background-size: cover;
}

body.n main.fr {
  background: url("img/n/background-desktop_FR.jpg") top center no-repeat;
  background-size: cover;
}

body.s main {
  background: url("img/s/background-desktop.jpg") top center no-repeat;
  background-size: cover;
}

body.s main.fr {
  background: url("img/s/background-desktop_FR.jpg") top center no-repeat;
  background-size: cover;
}

body main {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: 2300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body main #content #buttons {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}

body main #content #buttons a {
  display: block;
  max-width: 352px;
}

body main #content #buttons a img {
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

body main #content #buttons a:first-child img {
  -webkit-animation: pulse 1s linear infinite;
  animation: pulse 1s linear infinite;
}

@media only screen and (max-width: 1024px) {
  body.n main {
    background: url("img/n/background-mobile_vertical.jpg") top center no-repeat;
    background-size: cover;
  }
  body.s main {
    background: url("img/s/background-mobile_vertical.jpg") top center no-repeat;
    background-size: cover;
  }
  body.s main.fr {
    background: url("img/s/background-mobile_vertical_FR.jpg") top center no-repeat;
    background-size: cover;
  }
  body.n main.fr {
    background: url("img/n/background-mobile_vertical_FR.jpg") top center no-repeat;
    background-size: cover;
  }
  body main {
    margin: 0 auto;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 2em;
    padding-bottom: 0.5em;
  }
  body main #content {
    padding-left: 0;
    margin: 0 auto;
  }
  body main #content #text {
    display: none;
  }
  body main #content #textMob {
    display: block;
  }
  body main #content #buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  body.n main {
    background: url("img/n/background-mobile_horizontal.jpg") top center no-repeat;
    background-size: cover;
  }
  body.s main {
    background: url("img/s/background-mobile_horizontal.jpg") top center no-repeat;
    background-size: cover;
  }
  body.s main.fr {
    background: url("img/s/background-mobile_horizontal_FR.jpg") top center no-repeat;
    background-size: cover;
  }
  body.n main.fr {
    background: url("img/n/background-mobile_horizontal_FR.jpg") top center no-repeat;
    background-size: cover;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*# sourceMappingURL=styles.css.map */