body {
  background-image: url(/pngs/dusty.png);
  font-family: MS Gothic;
  font-style: normal;
  color: #cccccc;
  overflow-x: hidden;
}

@font-face {
    font-family: "Spirit"; 
    src: url(/fonts/Spirit.ttf);
}

@font-face {
    font-family: "AdorableDoll"; 
    src: url(/fonts/AdorableDoll.ttf);
}

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

.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/softlace.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;
}

#cute {
  position: absolute;
  display: block;
  margin: auto;
  top: 40px;
  margin-left: 50px;
  font-family: "AdorableDoll";
  font-size: 8em;
  font-weight: 600;
  color: #fae2f6;
  z-index: 10;
  background: linear-gradient(to top, #fff 5%, #FFE6F2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #D8A0B9;
  -webkit-animation: mover 1s infinite  alternate;
          animation: mover 2s infinite  alternate;
}

@-webkit-keyframes mover {
        0% { transform: translateY(0); }
        100% { transform: translateY(-15px); }
    }
    @keyframes mover {
        0% { transform: translateY(0); }
        100% { transform: translateY(-15px); }
    }
    
  
::-webkit-scrollbar {
width: 10px; /** width of total scrollbar **/
background: #fff; /** background of scrollbar **/
border: 1px solid #f6e0fd; /** border around whole scrollbar **/
border-radius: 5px;
}

::-webkit-scrollbar-thumb {
background: #f6e0fd; /** 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;
}