@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&display=swap");

body {
  box-sizing: border-box;
  margin: 0;
  background-color: #faedf0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  font-family: "Open Sans", sans-serif;
}

.container {
  background: url("up.png");
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #ec255a;
  border: 3px solid #292c6d;
  border-radius: 0.5rem;
}

.score {
  font-size: 4rem;
}

.high-score{
    font-size: 1.25rem;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.apply-shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
