#home{
  min-height: 100vh;

  background-image:
    linear-gradient(
      to right,
      rgba(16, 73, 17, 0.9),   /* verde forte */
      rgba(16, 73, 17, 0.6),
      rgba(16, 73, 17, 0.3),
      rgba(16, 73, 17, 0)      /* transparente */
    ),
    url("img/trato2.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  position: relative;
}

