body, html {
  margin: 0;
  padding: 0;
  color: black;
  font-family: MS Gothic;
  background-image: url('/pngs/pattern.jpg');
  cursor: url("/cursors/wingedheart.png"), auto;
}

.title {
  position: absolute;
}

.decor {
  position: absolute;
  margin-left: 1475px;
}

.gallery {
  position: absolute;
  margin-top: 200px;
}

#image {
  width: 200px;
  height: 200px;
}

.moodboard-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-around;
}

.moodboard-gallery div {
  box-sizing: border-box;
  width: calc(25% - 10px);
  margin: 5px;
  border-width: 8px;
  border-style: solid;
  border-image: url(/pngs/hotpink.png) 8 fill round;
  overflow: hidden;
  position: relative;
}

.moodboard-gallery div img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moodboard-gallery div span {
  position: absolute;
  bottom: 15px;
  left: 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  background: white;
  color: black;
  padding: 5px 10px;
  font-size: 20px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}

.moodboard-gallery div:hover img {
  transform: scale(1.35) rotate(10deg);
}

.moodboard-gallery div:hover span {
  opacity: 1;
  transform: none;
}

::-webkit-scrollbar {
width: 10px; /** width of total scrollbar **/
background: #fff; /** background of scrollbar **/
border: 1px solid #f9c2e2; /** border around whole scrollbar **/
border-radius: 5px;
}

::-webkit-scrollbar-thumb {
background: #f9c2e2; /** color of the moving part of the scrollbar (thumb) **/
border: 1px solid transparent; /** border around moving part of scrollbar (overlaps with border of total scrollbar) **/
border-radius: 5px;
}