@font-face {
  font-family: 'mek';
  src: url('MEK-Mono.woff2') format('woff2'),
       url('MEK-Mono.woff') format('woff');
}

body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  background-image: url('bg.png');
}


.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 0px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.image-container img {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.dreamimg {
  font-family: 'mek';
  font-size: 32px;
  color: rgba(215, 199, 124, 0.8);
  text-align: center;
  line-height: 0.75;
}

.thumbnail {
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.02);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(128, 128, 128, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.helpoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.helpoverlay p {
	font-family: 'mek';
	font-size: 38px;
	color: rgba(215, 199, 124);
	padding: 60px;
	text-align: left;
}

a {
	color: rgba(169, 140, 4);
}

#fullscreen-img {
    width: 98%;
    height: 98%;
    object-fit: contain;
}


.announcement-bar {
  font-family: 'mek';
  font-size: 50px;
  color: rgba(215, 199, 124, 0.8);
  text-align: center;
  line-height: 0.5;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.announcement-bar p {
  margin: 0;
}


.helpbutton {
  font-family: 'mek';
  font-size: 50px;
  color: rgba(215, 199, 124, 0.8);
  text-align: right;
  line-height: 0.5;
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.helpbutton p {
  margin: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  body {
    background: #000000;
    background-image: url('bg.png');
  }
  .image-container img {
    width: 150px;
    height: 150px;
    object-fit: contain;
  }
  .helpoverlay p {
	font-family: 'mek';
	font-size: 30px;
	line-height: 60%;
	color: rgba(215, 199, 124);
	padding: 10px;
	text-align: left;
  }
}
 