body{
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

p{
    font-size: 1vw;
    margin: 0vw;
    padding:0vw;
}

.title-holder{
    text-align: center;
    width: 100vw;
}

h1{
    font-size: 2vw;
}

h2{
  font-size:1.5vw;
    margin: 0vw;
    padding:0vw;
  }
 
.images-container{
    width: 100%;
    display: grid;
    grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
}

.col{

}

.images{
    padding: 0.5vw;
    
}

.images img{
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 1vw;
}

@media screen and (max-width: 700px) {
    .images-container{
      width: 100%;
      display: grid;
      grid-template-columns: 50% 50%;
  }
}