@charset "UTF-8";
@font-face {
  font-family: 'roboto';
  /* Donnez un nom à votre police */
  src: url("../fonts/Roboto.ttf") format("truetype");
}

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

body {
  width: 100%;
  min-width: 400px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: gainsboro;
  font-family: "roboto";
  position: relative;
}

body h1 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 2rem;
  width: 100%;
  padding: 0 10px;
  text-align: center;
}

body p {
  text-transform: uppercase;
  font-size: 1rem;
  color: red;
  font-weight: bold;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  line-height: 25px;
}

body .timer {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 20px;
  -webkit-animation: zoom 0.5s ease-in infinite alternate;
          animation: zoom 0.5s ease-in infinite alternate;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

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