.seccion {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.fila {
  display: flex;
  gap: 4rem;
  margin-bottom: 1rem;
}

.item {
  width: 500px;
  height: 120px;
  background-color: red;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.github-btn {
  padding: 0.5rem 1rem;
  border: none;
  background-color: black;
  color: white;
  cursor: pointer;
}
