body {
  height: 100vh;
  position: relative;
}

#sobre h2 {
  padding: 0 8rem 0.6rem 8rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--accent-color);
  border-image: linear-gradient(
      90deg,
      var(--background-color),
      var(--highlight-color),
      var(--background-color)
    )
    1;
}

#sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  padding: 2rem;
  margin-top: 2rem;
  animation: fadeIn 1s ease-in-out forwards;
}

#sobre div {
  background-color: var(--secondary-color);
  padding: 3rem;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  text-align: center;
  border-right: 3px solid var(--accent-color);
  border-left: 3px solid var(--accent-color);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  cursor: default;
  transition: all 0.2s ease;
}

#sobre div:hover {
  border-right: 3px solid var(--accent-color);
  border-left: 3px solid var(--accent-color);
  border-top: 3px solid var(--highlight-color);
  border-bottom: 3px solid var(--highlight-color);
}

#rodape-sobre {
  position: absolute;
  bottom: 0;
  width: 100%;
}
