
#gallery {
  width: 1000px;
  margin: auto;
  margin-top: 20px;
  border-collapse: collapse;
}

#galleryitem {
  width: 25%;
  text-align: center;
}


.gallerythumb {
  width: 200px;
  margin: auto;
  filter: drop-shadow(1px 0 0 var(--Cyan)) drop-shadow(0 1px 0 var(--Cyan)) drop-shadow(-1px 0 0 var(--Cyan)) drop-shadow(0 -1px 0 var(--Cyan));
}

.gallerythumb img {
  clip-path: polygon(0px 0px, 68.36px 0px, 89.43px 24px, 200px 24px, 200px 150px, 0px 150px);
  transition: 0.2s;
}

.gallerythumb:hover img{
  transform: scale(1.1);
}

.gallerytitle {
  margin-top: 6px;
  margin-bottom: 25px;
  padding: 4px;
  color: white;
  font-weight: normal;
  font-family: 'HomeVideo';
  transition: 0.2s;
}

#galleryitem:hover .gallerytitle {
  background: blue;
}