/* outer right cyan */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 8rem;
  text-shadow: 0px 0px 0 rgb(234, 234, 234), 1px 1px 0 rgb(223, 223, 223), 2px 2px 0 rgb(212, 212, 212), 3px 3px 0 rgb(202, 202, 202), 4px 4px 0 rgb(191, 191, 191), 5px 5px 0 rgb(180, 180, 180), 6px 6px 0 rgb(169, 169, 169), 7px 7px 0 rgb(158, 158, 158), 8px 8px 0 rgb(147, 147, 147), 9px 9px 8px rgba(0, 0, 0, 0.6), 9px 9px 1px rgba(0, 0, 0, 0.5), 0px 0px 8px rgba(0, 0, 0, 0.2);
  color: antiquewhite;
  letter-spacing: 0.5rem;
  text-shadow: 6px 0 6px #a408ff, 5px 5px 5px #d26df7, 0 6px 6px rgba(79, 164, 250, 0.7215686275);
}

.sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.sitemap div {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.3rem 0.5rem rgb(129, 130, 133);
  flex: 1 1 calc(33.333% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 1s ease;
}

.sitemap div:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.sitemap-item {
  margin: 1rem;
  width: 100%;
  background-color: rgb(246, 246, 223);
}

.sitemap-english,
.sitemap-german {
  background: linear-gradient(-45deg, rgba(225, 245, 116, 0.918), rgb(252, 151, 252), rgb(217, 140, 248));
  border-radius: 3rem;
}
.sitemap-english h2,
.sitemap-german h2 {
  font-size: 3rem;
  text-shadow: 0px 0px 0 rgb(226, 226, 226), 1px 1px 0 rgb(208, 208, 208), 2px 2px 0 rgb(189, 189, 189), 3px 3px 0 rgb(171, 171, 171), 4px 4px 0 rgb(152, 152, 152), 5px 5px 0 rgb(133, 133, 133), 6px 6px 5px rgba(0, 0, 0, 0.8), 6px 6px 1px rgba(0, 0, 0, 0.5), 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.title-sitemap {
  background-color: #a009f7;
  box-shadow: 0.5rem 0.3rem 0.5rem rgb(129, 130, 133) !important;
  cursor: none !important;
  margin-bottom: 1rem;
}

.sitemap div a {
  color: #333;
  text-decoration: none;
  margin-top: 1rem;
  font-size: 2rem;
}

.sitemap div a:hover {
  color: #a009f7;
  font-weight: bolder;
}

.sitemap i {
  font-size: 3rem;
  color: #007bff;
}

.sitemap i:hover {
  color: #a009f7;
}

@media (max-width: 768px) {
  .sitemap {
    justify-content: center; /* Center the two columns */
  }
  .sitemap div {
    flex: 1 1 calc(50% - 4rem);
  }
}
@media (max-width: 480px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .container h1 {
    font-size: 8rem;
  }
  .sitemap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1rem;
  }
  .sitemap div {
    flex: 1 1 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=sitemap.css.map */