.main {
    color: lighten(gray, 25%);
    background-color: lighten(skyblue, 60%);
    grid-area: main;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 1215px;
  }

  .items {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  
    overflow-y: hidden;
    white-space: nowrap;
    transition: all 0.2s;
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;
  }
  
  #text{
    max-width:0px;
  }
  
  #ReportContainer {
    min-width: 1215px;
 }

@media screen and (max-width: 1215px) {
  #ReportContainer {
    min-width: 912px;
  }
  .main {
    max-width: 912px;
  }
}
  
  .item {
    display: inline-block;
    margin: 0;
    pointer-events:none;
  }

  .items a{
    text-decoration: none;
    display: inline-block;
  }

  .item:hover{
    transition: 0.4s;
  }
 
  .item p .imgTitel, .items h3 {
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    opacity: 0;
    pointer-events: none;
  }
  

  .imgText {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .imgTitel {
    text-align: center;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* Standard syntax */
}


  .item:hover p .imgText {
    opacity: 1;
  }

  .item img{
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }

  .item:hover p .imgTitel{
    opacity: 1;
  }

  @media screen and (max-width: 500px) {
    .item{
    min-height: 200px;
    min-width: 200px;
    }
  }