
body {
  background-color: rgb(20, 20, 20);
}

h1, h2, h3, h4 {
  color: white;
  margin-bottom: 0;
}

li {
  color: white;
  margin-bottom: 0.5rem;
}

p {
  color: whitesmoke;
  margin-bottom: 0;
}

div {
  background-color: rgb(35, 35, 35);
  padding: 2rem;
  margin: auto;
  width: 600px;
  border-radius: 1rem;
  border: 1px solid rgb(80, 80, 80);
}

@media screen and (max-width: 800px) {
    div {
        width: calc(95% - 6rem);
    }
}