@import url("https://fonts.googleapis.com/css2?family=Eczar&display=swap");

/*Das Dreieck für Details wird hier entfernt*/
::marker {
  display: none;
}

details summary::-webkit-details-marker {
  display: none;
  content: none;
}

details > summary {
  list-style: none;
}

details {
  cursor: pointer;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 25px;
}

.noSelect {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.noSelect:focus {
  outline: none !important;
}

.handy-format {
  display: none;
}

html,
body {
  overflow-x: hidden;
}

body {
  background-color: rgb(112, 128, 144);
  margin: 0;
  padding: 0;
  font-family: "Eczar", serif;
  letter-spacing: 0.7px;
  line-height: 40px;
  animation: appear 2s ease-in-out;
  position: relative;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}

header {
  background-color: rgb(82 97 111);
  /* background-image: url(/pictures/background2.jpg);*/
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.783);
  border-bottom: solid 2px white;
  background-size: 100%;
  text-align: center;
  border-radius: 0 0 5vw 5vw;
  padding-top: 5px;
}

header img {
  width: 95vw;
  max-width: 1000px;
  margin-bottom: -12px;
}

#header-ul {
  list-style: none;
  padding: 0px;
}

#header-ul a {
  text-decoration: none;
  color: #fff;
  display: block;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1.2px;
  background-color: #ffffff2f;
  width: 65%;
  max-width: 500px;
  margin: auto;
  border-radius: 10px;
}

#header-ul a:hover {
  background-color: #ffffff9e;
}

#header-ul a:nth-child(2) {
  margin-top: 20px;
}

#header-ul a:nth-child(3) {
  margin-top: 20px;
}

.icon {
  display: none; /* Versteckt die Icons standardmäßig */
}

.icon-style {
  width: 30px;
}

#myDetails[open] #openIcon {
  display: inline; /* Zeigt das "Open Icon" an, wenn das Details-Element geöffnet ist */
}

#myDetails:not([open]) #closedIcon {
  display: inline; /* Zeigt das "Closed Icon" an, wenn das Details-Element geschlossen ist */
}

.inhalt {
  background-color: rgb(82 97 111);
  border-top: solid 2px white;
  border-bottom: solid 2px white;
  padding: 0.5vw;
  border-radius: 20px;
  width: 95vw;
  max-width: 1800px;
  margin: 5vw auto;
  color: #fff;
}

.inhalt-text {
  padding: 10px;
  width: 95%;
  margin: auto;
}

.block-text {
  background-color: rgb(111 127 143 / 24%);
  padding: 10px;
  border-radius: 10px;
  border: solid;
  border-width: 1px 0;
  margin: 10px 0;
  overflow: hidden;
}

.heading {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}

.block-text-p {
  margin: 0px;
  line-height: 20px;
  text-align: justify;
}

/*Footer*/

footer {
  width: 65vw;
  min-width: 240px;
  max-width: 410px;
  margin: auto;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4vh 4vh 0 0;
  border: solid;
  border-width: 2px 0 0 0;
  background-color: rgb(82 97 111);
  text-align: center;
  font-size: 15px;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
  line-height: 10px;
  -webkit-tap-highlight-color: transparent;
}

footer a:hover {
  border-radius: 5px;
  background-color: #ffffffcd;
}

footer p {
  margin: 0;
  font-size: 10px;
  line-height: 10px;
}

/* On foldable screens, decrease text size */
@media only screen and (max-width: 360px) {
}

/* Small screens */
@media only screen and (min-width: 361px) and (max-width: 400px) {
}

@media only screen and (min-width: 600px) {
  body {
    letter-spacing: 0.9px;
  }

  header img {
    width: 95vw;
    max-width: 1000px;
    margin-bottom: 0px;
  }

  .icon-style {
    width: 50px;
  }

  #header-ul a {
    padding: 7px 0px;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 1.2px;
    width: 65%;
    max-width: 430px;
    margin: auto;
    border-radius: 10px;
  }
}

@media only screen and (min-width: 1000px) {
  #header-ul a {
    padding: 13px 0px;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 1.2px;
    width: 65%;
    max-width: 500px;
    margin: auto;
    border-radius: 10px;
  }
}

/*Slide Befehle*/

.hiddenLinks {
  opacity: 0;
  filter: blur(1px);
  transform: translateX(-10%);
  transition: all 1.2s;
}

.showLinks {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.hiddenRechts {
  opacity: 0;
  filter: blur(1px);
  transform: translateX(10%);
  transition: all 1s;
}

.showRechts {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.hiddenUnten {
  opacity: 0;
  filter: blur(1px);
  transform: translateY(60%);
  transition: all 1s;
}

.showUnten {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hiddenSpawn {
  opacity: 0;
  filter: blur(1px);
  transition: all 1s;
}

.showSpawn {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
