nav {
  position: relative;
  margin-bottom: 1rem;
}

#nav-links {
  display: flex;
  justify-content: center;
}

#nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: var(--accent-color);
}

#nav-links li::after {
  font-weight: bold;
  color: var(--accent-color);
  content: "::";
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}

#nav-links li:last-of-type::after {
  content: "";
  margin: auto;
}

#nav-links a:hover {
  text-decoration: underline;
}
.container {
    display: flex; 
    justify-content:space-between
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(1rem + 0.4vw);
    background-color:floralwhite
}
#container {
    width: 85%;
    margin: auto;
    padding: 1rem;
}
article {
    flex: 1 1 13rem;
    line-height: 150%;
}
img {
     max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 1rem;
    width: 40rem;
}
@media screen and (max-width: 650px) {
    h1::before, h1::after {
        content: none;
        margin: auto;
    }
}