body {
  background: linear-gradient(90deg, rgb(21, 22, 22) 100%, rgb(0, 13, 19) 0%);
}

h1 {
  color: white;
  font-size: 5rem;
  text-align: center;
  margin: 2vw;
  font-weight: 100;
  font-family: 'Roboto', sans-serif;
}

h2 {
  font-size: 25px;
  font-weight: 300;
  padding-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}

a {
  font-weight:600;
  font-family: 'Roboto', sans-serif;
}

a:link {
  color: rgb(147, 179, 255);
}
a:visited {
  color: rgb(198, 182, 255);
}
a:hover {
  color: white;
  filter: drop-shadow(10px 5px 20px rgb(14, 14, 14));
}

.container {
  display: grid;
  grid-template-columns: 10vw auto 10vw;
}

.section {
  padding: 10px;
  margin: 1vw;
  border-radius: 10px;
  filter: drop-shadow(10px 5px 20px rgb(14, 14, 14));
  color: white;
  background: linear-gradient(85deg, #1d1d47 250px, #062855 100%);
}

@media(max-width: 600px) {
  [class="section"] {
    background: #1d1d47;
  }
}

#nonbullet {
  list-style-type: "";
}

.section li {
  font-size: 16px;
  padding-bottom: 5px;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  list-style-position: inside;
  list-style-type: " • ";
}

#page {
  counter-reset: boxes 0;
  grid-column-start: 2;
  grid-column-end: 3;
  margin: 1vw;  
}

footer {
  color: white;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}


@media (prefers-color-scheme: light) {
  body {background: rgb(250, 250, 250)}
  h1 {color: black}
  footer {color: black}
}

.centered {
  text-align: center;
}