html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 10px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: "Delius", cursive;
  background-color: #69c791;
}

body {
  width: 600px;
  margin: 0 auto;
  background-color: #ff9500;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}
h1 {
  font-size: 60px;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  color: #69c791;
  border-bottom: 10px dashed rgb(0, 0, 0);
  text-shadow: 3px 3px 1px black;
}
h2 {
  font-size: 45px;
  text-align: left;
  margin: 0;
  padding: 20px 0;
  color: #69c791;
  border-bottom: 5px solid #69c791;
  text-shadow: 3px 3px 1px black;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
}
p,
li {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.imagebar {
  display: flex;
  justify-items: center;
}
.everything {
  display: flex;
  flex-wrap: wrap;
}
.subnav {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  height: fit-content;

  padding: 10px;
  background-color: #69c791;
}

.done {
  color: darkseagreen;
  text-decoration: line-through solid black 2px;
}
