@import url("https://fonts.googleapis.com/css2?family=Lily+Script+One&display=swap");
body {
  background: #2678bf;
  font-family: "Lily Script One";
}

.container {
  width: 60vw;
  height: 80vh;
  margin: 10vh auto;
  background-color: #f26e22;
}

.end {
  display: none;
}

.flipper {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #f26e22;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #f9991c;
}

.back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #f26e22;
  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;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #f24c27;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.other {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-left: 75px;
}

.btn {
  background-color: #f9991c;
  font-weight: bold;
  font-size: 18px;
  padding: 10px;
  border: 2px solid #f26e22;
  font-family: "Lily Script One";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.btn:hover {
  background-color: #f24c27;
}

.medium,
.hard {
  margin-left: 30px;
}

h3 {
  font-size: 20px;
}

@media screen and (max-width: 1920px) {
  .other {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    -webkit-column-gap: 150px;
            column-gap: 150px;
  }
  .btn {
    width: 120px;
    margin: 0;
    margin-top: 10px;
  }
  .container {
    margin-top: 20px;
  }
  .splitter,
  .hscores {
    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;
  }
  .hscores h3 {
    margin: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .other {
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
  .container {
    -webkit-transform: scaleX(1.5);
            transform: scaleX(1.5);
  }
}

@media screen and (max-width: 580px) {
  .other {
    margin-top: 80px;
    -webkit-column-gap: 10px;
            column-gap: 10px;
  }
  .other h3 {
    font-size: 15px;
  }
  .other .easy {
    width: 80px;
  }
  .other .medium,
  .other .hard {
    display: none;
  }
}

@media screen and (max-height: 620px) {
  .other {
    margin-top: 120px;
  }
}
/*# sourceMappingURL=style.css.map */