@import url("https://fonts.googleapis.com/css2?family=Satisfy");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,900");
body {
  background: white;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.content {
  padding: 2rem;
}

.headingWrapper {
  display: flex;
  justify-content: space-around;
  margin-top: -132px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

.headingMain {
  color: #E9C64B;
  font-family: 'Satisfy', cursive;
  font-size: 3rem;
  text-align: center;
}

.headingOutter {
  align-self: center;
  color: #E9C64B;
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 3rem;
  text-transform: uppercase;
}

.canvasWrapper {
  border: 130px solid #C8020B;
  border-radius: 26px;
  box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.6);
}

canvas {
  background: #CAD4D6;
  box-shadow: 0px -3px 4px rgba(0, 0, 0, 0.6);
  height: 500px;
  margin-bottom: -4px;
  width: 800px;
}

.roundButtonWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: -114px;
  z-index: 10;
}

.circle {
  background-color: #FFFFF6;
  border-radius: 50%;
  box-shadow: 0px 8px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
  height: 95px;
  width: 95px;
}

.circleOne {
  margin-left: 20px;
}

.circleTwo {
  margin-right: 20px;
}

.squareButtonWrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.button {
  background: #3455DB;
  border: transparent;
  border-radius: 12px;
  color: #fff;
  font-family: 'Arial';
  font-size: 20px;
  font-weight: 400;
  height: 50px;
  line-height: 1.15;
  margin: 0 .5rem;
  padding: .75rem 1.8rem;
}

.button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.6);
}

.instructions {
  font-family: 'Arial';
  font-size: 1.5rem;
  text-align: center;
}

canvas.shake,
.canvasWrapper.shake,
.headingWrapper.shake,
.roundButtonWrapper.shake {
  animation: shake 0.5s linear 1;
  justify-items: center;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-3px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(5px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(5px, 0, 0);
  }
}