 body {
      font-family: pixeltimes;
      background-color: #e4e4e4;
      background-repeat: repeat;
      background-size: 8em;
      width: 48em;
      margin: auto;
      margin-top: 5em;
      font-size: 1.1em;
      text-shadow: 1px 1px 1px #000, 3px 3px 5px beige;
      color: #333;
       display: flex;
      flex-direction: column;
      align-items: center;
    }
    button {
      padding: 8px 15px;
      margin: 5px;
      font-family: pixeltimes;
      font-size: 16px;
      color: white;
      background-color: #000000;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #444;
} h1 {
    margin-top: 20px;
    color: #333;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px;
}

.thumbnail {
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.thumbnail span {
    display: block;
    padding: 10px;
    font-size: 15px;
    color: #333;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.rambles {
      font-size: 1.0rem;
      font-weight: bolder;
      font-style: italic;
    }
.ppl {
  margin-left: auto;
}



.folklore {
  display: flex;
      flex-direction: column;
  align-items: center;
  width: 250px;
  height: 250px;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.folklore:hover {
  opacity: 1.0;
}
