.content {
  justify-content: center;
  align-items: center;
  height: calc(90dvh - 4rem);
  display: flex;
}

.hero__link {
  color: var(--primary-text);
  padding: .5rem 1rem;
  font-size: 1.2rem;
  font-weight: lighter;
  text-decoration: none;
  transition: background-color .3s;
}

.hero {
  max-width: 600px;
  padding: 1rem;
}

h1 {
  color: var(--primary-text);
}

a {
  text-decoration: none;
}

.red-period:after {
  content: ".";
  color: red;
  margin: 0;
  padding: 0;
}

.hero__list {
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hero__text {
  font-size: 1.4rem;
}

.hero__item a {
  padding: 0;
}

.hero__item:hover {
  border-bottom: 2px solid var(--primary-text);
  transition: border-bottom .1s;
  scale: 1.1;
}

@media (width <= 850px) {
  .hero__list {
    flex-direction: column;
    gap: .5rem;
  }

  .hero {
    text-align: center;
  }
}

@media (width <= 576px) {
  .btn-lg {
    width: 100%;
    padding: .5rem 1rem;
    font-size: 1rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
