body {
  background-color: rgb(0, 45, 46);
  color: antiquewhite;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 8px;
}

h2 {
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 2.5px;
  margin-top: 2.5px;
}

h3 {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 1px;
}

h4 {
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 0.75px;
}

blockquote {
    font-size: 18px;
    font-style: italic;
    color: #555555;
    border-left: 5px solid #dddddd;
    padding-left: 20px;
    margin: 20px 0;
}

/* Ordered List Style */
ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Unordered List Style */
ul {
    list-style-type: disc;
}

/* List Item Style */
li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

header {
  margin-top: 2em;
  margin-bottom: 1.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: antiquewhite;
  display: flex;
  justify-content: space-between;
  
  a {
    color: inherit;
    text-decoration: none;
  }

  a:focus,
  a:hover {
    color: rgb(222, 148, 64);
    font-weight: bold;
    text-decoration: underline;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    ul {
      display: flex;
      gap: 8px;

      li{
        list-style:none;
      }
    }
  }
}

main {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;

  img {
    margin-top: 0.75em;
    align-self: center;
    max-width: 100%;
  }

  h2 {
    margin-top: 0.75em;
  }

  p {
    text-align: justify;
  }

  ul{
    display: flex;
    justify-content: space-evenly;
    margin-top: 2em;

    li{
      list-style:none;
      text-align: center;      
    }
  }
}

footer {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4em;
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
  font-size: 0.6em;
}