@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe&display=swap");

/* Button Base Styles */
.tile-new {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18rem;
  height: 4rem;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  transition:
    background-color 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

/* Secondary Button: changes on hover */
.secondary-btn {
  background-color: var(--button-color);
  color: var(--button-text);
  box-shadow: var(--button-shadow);
}

.secondary-btn:hover {
  background-color: var(--button-hover-color);
  color: var(--button-hover-text);
  box-shadow: var(--button-shadow-hover);
}

.secondary-btn:active {
  box-shadow: var(--button-shadow-active);
  transform: translateY(0.1rem);
}
