  
  .module {
    height: 100vh; /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    max-width: 30%;

    background-image: url("./van_escolar.png");  
    background-repeat: no-repeat; 
    /*background-position: 50% 50%;*/
    background-size:contain;
    
  }
  
  .module__item {
    align-items: center;
    display: flex;
    height: 20%;
    justify-content: center;
  }
  
  .module__item:nth-child(odd) {
    background-color: #fff;
    color: #F73859;
  }
  
  .module__item:nth-child(even) {
    background-color: #F73859;
    color: #F1D08A;
  }