body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #000;
  margin: 0;
  padding: 20px;
  color: white;
}

.site-name {
  font-family: 'DotGothic16', sans-serif;
  font-size: 24px;
  position: absolute;
  top: 4%;
  left: 5%;
  color: white;
}

h1 {
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 50%; /* Moves the gallery to the upper half */
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery img {
  width: 300px;
  height: auto;
  border-radius: 5px;
  /*box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);*/
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

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

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .site-name {
    text-align: left;
    width: auto;
    font-size: 18px;
    margin-left: 5%;
    margin-bottom: 10px;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
  }

  .gallery img {
    width: 90%; /* Adjusted for mobile */
  }
}
