.alert-menu {
  position: absolute;
  background-color: var(--lighter-color);
  width: auto;
  visibility: visible;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
  opacity: 0.98;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 30px 0px black;
  font-size: 1rem;
  transition: transform 200ms ease-out;
}

.alert-menu.hidden {
  visibility:hidden;
  transform: translate(-50%, -50%) scale(.25) rotateY(120deg);
}

.close-alert-menu{
  cursor: pointer;
  z-index: 2;
  font-weight: 600;
  align-self:flex-end;
  padding: .1rem;
  margin-top: -0.6rem;
}

#new-game-alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 1.3rem;
  margin-top: 2rem;
}

.alert-menu-text{
  font-size:2rem;
  white-space: nowrap;
}

/* tall and skinny display */
@media screen and (max-width:300px) and (min-height:601px){
  .alert-menu-text {
    font-size: 1rem;
  }
}