/* CSS files add styling rules to your content */

body {
  font-family: 'VT323', monospace;
  margin: 2em;
  background-color: black;
  color: palegreen;
  padding-bottom: 1.75em;
}

h1 {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}

.panda-icon {
  width: 48px;
  height: 48px;
}

p {
  font-size: 16px;
}

a {
  color: white;
}

ul {
  list-style: none;
  margin-left: 1em;
  padding-left: 0;
}

li {
  padding-left: 1em;
  text-indent: -1em;
}

li:before {
  content: "*";
  padding-right: 5px;
}