* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    display: flex;
    max-width: 100vw;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    /* background: #000; */
    background: linear-gradient(rgba(89, 180, 255, 0.8), rgba(255, 118, 225, 0.8));
}

image1 {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    padding: 6px;
}

image1:hover {
    cursor: pointer;
    opacity: 0.7;
    transform: scale(1.05); 
    transform: rotate(-1.2deg) scale(1.05);
    transition: 0.6s ease-out;
    filter: grayscale(0.9);
}

.slider {
  /* line them up horizontally */
  display: flex;

  /* allow for scrolling */
  overflow-x: auto;

  /* make it smooth on iOS */
  -webkit-overflow-scrolling: touch;
}
.slider > div {
  /* make sure the width is honored */
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;	
}
