html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #ecf39e;
  color: #132a13;
  font: 90% Roboto, Arial, sans-serif;
  font-weight: 300;
}

header {
  padding: 16px;
}


#wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

article {
  width: 80%;

  p {
    line-height: 1.8;
    text-align: justify;
  }

  h3 {
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 0;
  }
  
  a {
    color: #458588;
  }
}

.back_link {
  text-decoration: none;
}

.centered-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 700px) {
  article {
    img {
      width: 100%;
    }
  }
}
