body {
  background: #000000;
  color: #ffffff;
  font-family: 'AJensonPro-Regular';
  background-image: url("https://geist-zone.neocities.org/BG.png");
}

@font-face {
  font-family: AJensonPro;
  src: url('https://geist-zone.neocities.org/fonts/AJensonPro-Regular.otf');
}

@font-face {
  font-family: AJensonPro;
  src: url('https://geist-zone.neocities.org/fonts/AJensonPro-It.otf');
  font-style: italic;
}

@font-face {
  font-family: CatharsisRequiem;
  src: url('https://geist-zone.neocities.org/fonts/CAR_____.TTF');
  font-style: italic;
}

marquee {
  font-family: "AJensonPro";
}

::selection {
  background: #39dabd;
  color: #054039;
}

a {
  color: #ffffff;
  letter-spacing: 1px;
}

a:hover {
  color: #f524a9;
}

hr {
  color: #ffffff;
  border-top: 1px solid #7ee3c4;
  border: none;
  width: 70%;
}

h1 {
  text-transform: uppercase;
  background: none;
  font-size: 1.2em;
  padding: 1px 0 1px 12px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: left;
  font-family: "AJensonPro";
}

h2 {
  text-transform: uppercase;
  background: none;
  font-size: 1em;
  padding: 1px;
  color: white;
  letter-spacing: 2px;
}

span {
  font-weight: bold;
}

p {
  text-align: left;
  margin: 15px;
}

.body {
  margin: 0 auto;
  width: 900px;
  height: 650px;
  margin-top: 30px;
}

.layoutimg {
  margin: 0 auto;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

.content {
  z-index: 1;
  position: relative;
  float: right;
  width: 50%;
  padding: 10px;
  height: 575px;
  margin-top: 30px;
}

.header {
  padding: 5px;
  margin: 5px;
  font-size: 1em;
  color: #ffffff;
  font-weight: bold;
  text-align: right;
}

.nav {
  padding: 5px;
  background: #294748;
  border: 1px solid #c8edf0;
  border-radius: 2px;
  margin: 5px;
  font-size: .9em;
}

.nav a {
  margin: 1px;
  padding: 1px;
}

.blog {
  padding: 5px;
  background: #294748;
  border: 1px solid #c8edf0;
  border-radius: 2px;
  margin: 5px;
  font-size: .9em;
  height: 80%;
  overflow: auto;
  opacity: 0.8;
}

.blog img {
  width: 180px;
  max-width: 80%;
  height: 180px;
  margin: 10px;
}

.footer {
  text-align: center;
  font-size: 70%;
  padding: 0;
  margin: 5px;
  color: #39dabd;
}

.footer a {
  color: #39dabd;
  background: none;
}

.icon {
  width: 100px;
  height: 100px;
  border: 1px solid #c8edf0;
  float: right;
  padding: 1px;
  margin: 5px;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: #fcf1f6;
}

::-webkit-scrollbar-track {
  background: #fcf1f6;
  border-radius: 0;
  border: 1px dotted #c8edf0;
}

::-webkit-scrollbar-thumb {
  background: #f0d0df;
  border: 1px dotted #c8edf0;
  border-radius: 0;
}

/* Mobile Layouts */
@media screen and (max-aspect-ratio: 16/9) {
  .body {
    width: 500px;
    height: 700px;
    margin-top: 10px;
  }

  body {
    height: 100%;
  }

  .content {
    width: 95%;
    height: 490px;
    margin-top: 75px;
  }

  .header {
    background: none;
  }
}

/* gallery */

.gallery {
  padding: 10px;
  background: #294748;
  border: 1px solid #c8edf0;
  border-radius: 2px;
  margin: 5px;
  font-size: .9em;
  overflow: auto;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 Spalten gleich breit */
  gap: 10px; /* Abstand zwischen Bildern */
}

.thumbs img {
  width: 100%; /* füllt den Grid-Cell */
  border: 1px solid #c8edf0;
  transition: transform 0.2s ease-in-out;
}

.thumbs img:hover {
  transform: scale(1.05);
  border-color: #f524a9;
  cursor: pointer;
}

