.button {
  pointer-events: auto;
  cursor: pointer;
  background: #000;
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  width: 40%;
}

.button--pandora {
  font-weight: 700;
  padding: 0;
  border-radius: 50px;
  opacity: 0.7;
  border: 2px solid transparent;
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.button--pandora span {
  font-size: 18px;
  display: block;
  padding: 1.5rem 1rem;
}

/* Hover effects only for devices that support hover */
@media (hover: hover) {
  .button--pandora:hover {
    border-color: red;
    opacity: 0.9;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  gap: 0.5em;
}

@media (max-width: 896px) {
  .button {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 896px) and (orientation: landscape) {
  .button--pandora {
    font-weight: 550;
    border-radius: 50px;
  }

  .button--pandora span {
    padding: 0.75rem;
  }
}
