html,
body {
  margin: 0;
  padding: 0;
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* oscurecido */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-logo {
  text-align: center;
  width: 250px;
  z-index: 1;
  margin-top: 1rem;
  color: white;
}

.hero-links {
  z-index: 1;
  display: flex;
  gap: 1rem;
  width: 35%;
  margin-bottom: 10rem;
}

.hero-links a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(49, 49, 49);
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem;
  border-radius: 0.2rem;
  text-decoration: none;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;

  &:visited {
    color: rgb(49, 49, 49);
  }

  &:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgb(21, 21, 21);
  }
}
