@font-face {
  font-family: "Roboto-Regular";
  src: url("../assets/fonts/Roboto-Regular.ttf");
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto-Regular", sans-serif;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(-45deg, #ee76529c, #e73c7e, #2090b9bd, #23d5ab98);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#app {
  height: 100%;
  max-width: 50vh;
  padding-block: 11vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header {
  font-size: 2vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 3.5vh;
}

.boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.2vh;
}

.box {
  cursor: pointer;
  font-size: 2.75vh;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.452);
  width: 11vh;
  height: 11vh;
  border: 1.22222vh solid rgba(0, 0, 0, 0.452);
  border-radius: 1.83333vh;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.margin-block-auto {
  margin-block: auto;
}

.green {
  background-color: #B6E2A1;
}

.yellow {
  background-color: #FFF89A;
}

.orange {
  background-color: #FEBE8C;
}

.red {
  background-color: #EF4B4B;
}

.blue {
  background-color: #1572A1;
}

.pink {
  background-color: #FF8DC7;
}

.w-100 {
  width: 100%;
}

.m-block-1 {
  margin-block: 0.5vh;
}

.p-block-2 {
  padding-block: 1vh;
}
/*# sourceMappingURL=styles.css.map */