button {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.btn {
  /* FONT */
  font-family: var(--font-buttons), sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  /* SIZE */
  padding: 1.2rem 2.2rem;
  width: fit-content;
  /* GENERAL */
  border-radius: 5px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.39);
  letter-spacing: 1px;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-3px);
  transition: 100ms ease-in;
}

.btn-close-mobile-menu {
  position: absolute;
  right: 35px;
  top: 35px;
}

.btn-go-up {
  display: none;
  animation: translateYpos 500ms;
}
