@import url("https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap");
* {
  font-family: "Literata", serif;
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-image: url("../../static/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../static/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(5px);
  z-index: -1;
}

.glass {
  box-shadow: inset 0 0 15px rgba(135, 135, 135, 0.2), 0 0 18px 3px rgba(0, 0, 0, 0.5137254902);
}

.lang {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 5px;
  text-align: center;
  flex-direction: column;
}
.lang .box {
  padding: 10px;
  text-align: center;
  font-size: 18px;
  border-radius: 10px;
  border: ridge;
  gap: 10px;
}
.lang .box .btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  font-size: 20px;
  transition: all 0.3s ease-in;
  cursor: pointer;
  background: transparent;
  border-radius: 10px;
  border: ridge;
}
.btn:hover {
  background: #220869;
}

.header {
  text-align: center;
  padding: 10px;
  border-bottom: ridge;
  background-color: rgba(0, 0, 0, 0.5137254902);
}

.main {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
}

.sidepanel {
  display: flex;
  flex-direction: column;
  border: ridge;
  border-radius: 10px;
  padding: 10px;
  gap: 20px;
  text-align: center;
  align-self: flex-start;
  flex: 0 1 12%;
}
.sidepanel p {
  font-size: 14px;
  text-align: center;
  margin: 0;
  text-decoration: underline;
}
.sidepanel .a {
  font-size: 20px;
  font-weight: 500;
}
.sidepanel .items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.articles {
  border: ridge;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2;
}
.articles h2 {
  text-align: center;
  font-size: xx-large;
  margin-top: 0;
}
.articles p {
  font-weight: 500;
}
.articles b {
  font-weight: 675;
}
.articles img {
  width: 100%;
  cursor: pointer;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: ridge;
  border-radius: 10px;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.5137254902);
}
.file-list .file-item {
  list-style: none;
}

a, .a {
  text-decoration: none;
  transition: all 0.3s ease-in;
  font-weight: 700;
  cursor: pointer;
}
a:hover, .a:hover {
  color: #ea8026;
}

.enlarged {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  cursor: pointer;
  max-width: 80%;
  object-fit: contain;
  border: ridge;
}

table {
  border-collapse: collapse;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5137254902);
}
table th, table td {
  border: ridge;
  padding: 10px;
  text-align: center;
}

code {
  background-color: rgba(0, 0, 0, 0.5137254902);
  padding: 0 5px;
  border-radius: 5px;
  font-family: "Fira Code", monospace;
}

blockquote {
  background-color: rgba(0, 0, 0, 0.5137254902);
  padding: 5px;
  border-radius: 5px;
  font-family: "Fira Code", monospace;
  font-weight: 550;
}

@media screen and (max-width: 768px) {
  .main {
    flex-direction: column;
  }
  .sidepanel {
    align-self: center;
  }
  .articles {
    flex: 1;
  }
  .file-list {
    flex: 1;
  }
}

/*# sourceMappingURL=style.css.map */
