.hljs a {
  color: #4ec9b0;
  text-decoration: none;
}

.hljs a:hover {
  text-decoration: underline;
}

body {
  background-color: #000000;
  font-family: "Inter", sans-serif;
}
body ::-webkit-scrollbar {
  width: 8px;
}
body ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}
body ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
body ::-webkit-scrollbar-thumb :hover {
  background: rgba(255, 255, 255, 0.15);
}

.information {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 60vh;
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.information--image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.information--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.7);
}
.information--body {
  z-index: 2;
  height: auto;
  width: 100%;
  padding: 30px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.information--body .info--info {
  margin-left: 2px;
  color: #000000;
}
.information--body--title {
  margin: 100px 0;
}
.information--body--title p {
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 900;
  margin: 0;
  color: white !important;
  background-color: #4ec9b0;
  padding: 10px 30px;
  border-radius: 20px;
}
.information--body--content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 95%;
  max-width: 800px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .information--body--content {
    gap: 10px;
  }
}
@media (min-width: 1001px) {
  .information--body--content {
    gap: 20px;
  }
}
.information--body--content div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 5px 20px;
  background-color: rgba(78, 201, 176, 0.9);
  gap: 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.information--body--content div p {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
  text-shadow: 0 0 10px rgb(255, 255, 255);
}
.information--body--content div img {
  height: 30px;
  border-radius: 5px;
}
.information--body--content div:hover {
  cursor: pointer;
  transform: translateY(-2px);
}
.information--body--war {
  max-width: 80%;
  text-align: center;
  opacity: 0.5;
}
.information--body--war span {
  color: #fff;
  font-weight: 500;
}
.information--body--war span span {
  text-decoration: underline;
  text-decoration-color: #4ec9b0;
}/*# sourceMappingURL=info.css.map */