body {
    background: #E5E1FD;
    font-family: 'Hind', sans-serif;
}

.header {
    max-width: 50rem;
    margin: auto;
}

h1 {
    text-align: center;
    color: navy;
    font-family: 'Roboto Mono', monospace;
}

.text-container {
    max-width: 760px;
    margin: 0 auto;
}

.section {
    max-width: 50rem;
    margin: auto;
}

img {
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    transition: all 0.5s;
}

img:hover {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
      filter: none;
      transform:scale(1.05);
  }

h2 {
    font-family: 'Roboto Mono', monospace;
    color: navy;
}

h3 {
    font-family: 'Roboto Mono', monospace;
}

p {
    font-family: 'Hind', sans-serif;
    line-height: 1.75em;
}

a, a:visited {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: navy;
}

a:hover {
    color: hsla(0, 0%, 0%, 0.5);
}

a.no-underline {
    text-decoration: none;
}

.row-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2em;
}

.column-container {
flex-grow: 1;
}

@media (max-width: 768px) {
.row-container {
    flex-direction: column;
}
}