#container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

a {
  cursor: url('../assets/cursors/hand_point.png'), crosshair;
}

h1, h2 {
  text-align: center;
  text-shadow: 3px 0 #fff597,
              -3px 0 #fff597,
              0 2px #fff597,
              0 -2px #fff597;
  margin-bottom: 0;
}

h1 {
  font-size: 10vw;
}

h2 {
  font-size: 5vw;
}

#start-game {
  margin: 0;
  text-align: center;
  margin-top: 5vh;
}

.start-btn {
  color: #b85d39;
  font-size: 60px;
  background-color: #fff597;
  border-radius: 5px;
  display: flex;
  width: 200px;
  height: 70px;
  transition: 0.5s;
  box-shadow: inset 3px 3px 5px #b85d39, inset -3px -3px 5px #b85d39;
  cursor: url('../assets/cursors/hand_point.png'), crosshair;
}

.start-btn:hover {
  border-radius: 10px;
  box-shadow: inset 5px 5px 7px #b85d39, inset -5px -5px 7px #b85d39;
}

.btn-style701 {
  position: relative;
  border: 3px dashed transparent;
  span {
    width: 100%;
    display: block;
    position: relative;
  }
  &::before,
  &::after,
  span::before,
  span::after {
    transition: 0.3s;
    width: 15px;
    height: 15px;
    position: absolute;
    border: 3px solid #b85d39;
    border-radius: 3px;
    opacity: 0;
    content: "";
  }
  &::before {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
    transform: translate(-50%, -50%);
  }
  &::after {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
    transform: translate(-50%, 50%);
  }
  span::before {
    top: 0;
    right: 8px;
    border-left: none;
    border-bottom: none;
    transform: translate(50%, -50%);
  }
  span::after {
    bottom: 0;
    right: 8px;
    border-left: none;
    border-top: none;
    transform: translate(50%, 50%);
  }
  &:hover {
    &::before,
    &::after,
    span::before,
    span::after {
      opacity: 1;
      transform: translate(0%, 0%);
    }
  }
}