.centered {
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.column .btn {
  min-width: 18ch;
  text-decoration: none;
  color: inherit;
}

.beatle-lingo {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
  margin-bottom: 15px;
  width: 100%;
  max-width: 100%;
}

.beatle-box {
  flex: 1 1 70px !important;
  max-height: 70px;
  max-width: 70px;
  aspect-ratio: 1/1;
  min-height: 42px;
  min-width: 42px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px !important;
  font-weight: bold;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background-color 0.5s ease;
}

.beatle-logo {
  width: 48px;
  height: 48px;
}

@media (max-width: 575px) {
  .beatle-logo {
    width: 28px;
    height: 28px;
  }

  .beatle-box{
    font-size: 24px !important;
  }
}
