

html {
  box-sizing: border-box;
  font-family: Merriweather;
  font-weight: 500;
  font-size: 16px;
  color: black;
      text-align: center;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
    max-width: 930px;
    margin: 0 auto;
    background-color:rgb(255, 255, 255);
}

.logo-section {
    display: grid;
    text-align: center;
    justify-items: center
}

.logo-section h1 {
    font-size: 2.0em;
    margin-top: 0;
    margin-bottom: .6em;
    line-height: .9em;
}
.logo-section h2 {
    font-size: 1.5em;
    margin-top: .3em;
    line-height: .9em;
}

.main-content {
  display: grid;
  text-align: center;
}

.main-content .list {
    display: grid;
    text-align: left;
    padding-inline-start: 1em;
    gap: 1rem;
}

.main-content .list li {
    max-width: 95%;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgb(10, 65, 99, 0.2);
}

.footer{
    padding: 25px;
    font-size: 1.2em;
    text-align: center;
}


