* {
  box-sizing: border-box;

  margin: 0;
  padding: 0;

  font-family: "Poppins", sans-serif;
}

*::-webkit-scrollbar {
  display: none;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100dvw;
  height: 100dvh;
  padding: 0 1rem;

  background-color: rgb(10, 10, 10);
  color: rgb(170, 170, 170);
  font-weight: 500;
}

header,
footer {
  width: 100%;
  min-height: max-content;
  padding: 1.5rem 0;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

header svg {
  width: 2.2rem;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;

  width: 100%;
  height: 100%;
  margin-bottom: 4.5rem;
}

section .InfoBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;

  width: 100%;
  max-width: 480px;
  margin-bottom: 0.3rem;
  padding: 0.8rem;
  padding-bottom: 0.6rem;

  border-radius: 0.4rem;
  background-color: rgb(20, 20, 20);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
}

.InfoBox p {
  padding: 1rem;
  padding-bottom: 0.9rem;

  border-radius: 0.4rem;
  background-color: rgb(15, 15, 15);

  text-align: center;
  line-height: 1.7rem;
  font-size: 0.9rem;
}

.InfoBox p .HighLight {
  padding: 0 0.4rem;

  color: #ff0033;
  background-color: rgb(30, 30, 30);
  border-radius: 0.3rem;
}

.marginRight {
  margin-right: 0.3rem;
}

.marginLeft {
  margin-left: 0.3rem;
}

.InfoBox svg {
  width: 3.5rem;
  color: #ff0033;
}

section .Route {
  width: 100%;
  max-width: 480px;
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.3rem;

  border-radius: 0.4rem;
  background-color: rgb(20, 20, 20);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
}

.Route p {
  padding: 0.5rem;

  border-radius: 0.4rem;
  background-color: rgb(15, 15, 15);

  font-size: 0.9rem;
}

.Route p .Constant {
  padding: 0 0.4rem;

  color: #8a8a8a;
  background-color: rgb(30, 30, 30);
  border-radius: 0.3rem;
}

.Route p .Div {
  padding: 0 0.2rem;
  margin: 0 0.3rem;

  color: #8a8a8a;
  background-color: rgb(24, 24, 24);
  border-radius: 0.3rem;
}

.Route p .HighLight {
  padding: 0 0.4rem;

  color: #00ff7b;
  background-color: rgb(30, 30, 30);
  border-radius: 0.3rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  width: 100%;
  margin-top: 4rem;
}

footer .Version {
  padding: 0.2rem 0.6rem;

  border-radius: 0.4rem;
  background-color: rgb(20, 20, 20);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
  box-shadow: 0px 0px 0px 1px rgba(30, 30, 30, 1);
}

@media screen and (max-width: 480px) {
  * {
    font-size: 0.85rem;
  }
}
