/*style.css*/

html {
    font-family: 'Gaegu', 'Source Sans Pro 3', sans-serif, cursive;
    font-size: 20px;
    line-height: 1.45;
}

header {
    display: flex;
    justify-content: center;
}

.flex-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.flex-nav a {
  text-decoration: none;
}


body {
    background-color: #f0f0f0;
}

/* the * targets everything inside the <main> element in HTML.
main p  targets every <p> inside <main>. it's all granular.*/
main {
    margin-inline: auto;
    max-width: 65ch;
    margin-block:0 1rem;
}

img {
  max-width: 100%;
}

footer {
    margin-inline: auto;
    max-width: 65ch;
    padding-block: 10px;
    padding-inline: 10px;
    background-color: #b9b9b9;
    color: #424242;
}