/* Page styles */
body {
  display: flex;
  flex-direction: column;
  color: #c8c8c8;
  font-family: "Perfect DOS VGA 437";
  font-size: 120%;
  line-height: 1.3rem;
  background: url(../assets/background.png) #000;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Shade for the body */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.51);
  z-index: -1;
}

/* Main container */
.container {
  box-sizing: border-box;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border: 4px solid #252525;
  padding: 2.5rem 1rem;
  margin: auto;
  max-width: min(46rem, 100%);
  text-align: justify;
  background: #000;
}
@media (max-width: 768px) {
  .container {
    border: none;
  }
}

/* Text container */
.content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 0 2rem;
}

@media (max-width: 480px) {
  .content {
    margin: 0;
  }
}

/* Logo component */
.logo {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 0 2rem;
}

@media (max-width: 480px) {
  .logo {
    margin: 0;
  }
}

.logo > img {
  width: 100%;
  height: auto;
  max-width: 28rem;
  filter: contrast(1.7);
}

/* Lists */
ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

ul.row {
  flex-direction: row;
}

li {
  list-style-type: none;
  text-align: left;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

li::before {
  content: "*";
  margin: 0 0.5rem 0 0;
}

li > span {
  display: block;
  text-indent: 0;
  padding-top: 0.2rem;
  padding-left: 1em;
}

/* Links */
a {
  color: #0ab;
  text-decoration: none;
  text-transform: uppercase;
}

a:active {
  color: #fff;
  background: #ababab;
}

/* Headings */
h1,
h2 {
  font-weight: 400;
  text-align: center;
}

h2 {
  text-align: left;
  margin: 0 auto;
  margin-bottom: 0.5em;
  overflow: hidden;
  white-space: nowrap;
}

h2::before {
  content: "-- [ ";
}

h2::after {
  content: " ] -------------------------------------------------------- ";
}

/* Helper */
.small {
  text-transform: none;
}

.center {
  text-align: center;
}
