@import "../header.css";
@import "../defaults.css";

* {
  background: black;
}

a {
  text-decoration: none;
}

#content {
  background: black;
  width: 100%;
  min-width: 1100px;
  font-size: 20px;
  margin-top: 160px;
}

#content-choices {
  font-size: 60px;
  width: 70%;
  margin: auto;
}

ul {
  padding-top: 10%;
  list-style: none;
}

ul > li > a::before {
  content: "_";
  color: var(--accent);
}

ul > li {
  margin-top: 30px;
}

#content-choices a {
  color: var(--accent);
}

@media (max-width: 1200px) {
  #content {
    min-width: unset;
    margin-top: 100px;
  }

  #content-choices {
    font-size: 30px;
    width: 420px;
    width: 95%;
    margin: auto;
    background: black;
  }
}
