/* header {
  background: url("../assets/images/1UpBackground.jpg") no-repeat center top;
  background-size: contain;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  border-bottom: 1px dashed #b5e853;
  padding: 20px 0;
  box-sizing: border-box;
}

header h1 {
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 0 -40px;
  font-weight: bold;
  font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  color: #b5e853‎;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
               0 0 5px rgba(181, 232, 83, 0.1),
               0 0 10px rgba(181, 232, 83, 0.1);
  letter-spacing: -1px;
  -webkit-font-smoothing: antialiased;
  @include media-max-width($container-max-width) {
    margin-left: 0;
  }
}


header h1:before {
  content: "./ ";
  font-size: 24px;
}

header h2 {
  font-size: 18px;
  font-weight: 300;
  color: #b0b0b0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
               0 0 5px rgba(181, 232, 83, 0.1),
               0 0 10px rgba(181, 232, 83, 0.1);
} */

body {
  margin: 0;
  padding: 0;
  background: url("../assets/images/bkg1.png") no-repeat center center fixed;
background-size: cover;
background-color: black;
  color: #eaeaea;
  font-size: 16px;
  line-height: 1.5;
  font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
}

ul li {
  list-style-image: url('../assets/images/ulli.png');
}

a {
  text-decoration: none;
}

.button-link,
.button2-link {
    display: inline-block;
    padding: 10px 24px;
    margin: 8px 0;
    color: #e3ffe3;
    border-radius: 18px;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px dashed;
    transition: box-shadow 0.3s, background-color 0.3s;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
    color: #dfffdfff;
}

.button-link {
    background: rgba(106, 176, 76, 0.25);
    border-color: rgba(74, 124, 42, 0.4);
    color: #e3ffe3;
}
.button-link:hover {
    box-shadow: 0 0 12px 4px rgba(140, 216, 94, 0.5);
    background: rgba(140, 216, 94, 0.35);
}

.button2-link {
    background: rgba(117, 82, 154, 0.25);
    border-color: rgba(80, 53, 106, 0.4);
    color: #e3ffe3;
}
.button2-link:hover {
    box-shadow: 0 0 12px 4px rgba(170, 126, 212, 0.5);
    background: rgba(170, 126, 212, 0.35);
}

details {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  max-height: 10.5em;
}

details[open] {
  max-height: 5000px;
}

details > summary {
  cursor: pointer;
  font-weight: bold;
  user-select: none;
  transition: color 0.3s ease;
  list-style: none;
}

details > summary:hover {
  color: #aadd55;
}

details[open] > summary {
  color: #b5e853;
}

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

details > summary::before {
  content: "+";
  display: inline-block;
  margin-right: 6px;
  transform-origin: center;
  transition: transform 0.3s ease;
}

details[open] > summary::before {
  transform: rotate(225deg);
}