#hero{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 20vh;
    background: rgb(16,78,47);
    background: linear-gradient(90deg, rgb(190, 209, 190) 0%, rgb(159, 199, 173) 20%, rgb(89, 179, 134) 100%);
  }
  
  #hero h1{
    font-family: 'Times New Roman', Times, serif;
    color: white;
    font-size: 4vw;
  }

  .contenedor{
    margin-left: 30px;
    margin-right: 30px;
  }

  @media screen and (max-width: 900px){
    .contenedor{
      margin: 15px;
      padding-bottom: 10px;
      overflow-x: scroll;
    }

    .contenedor::-webkit-scrollbar{
      background-color: #eff0f3;
      border-radius: 10px;
      height: 10px;
  }
  .contenedor::-webkit-scrollbar-thumb{
      background-color: rgb(143, 141, 141);
      border-radius: 10px;
      height: 10px;
  }
  }