body {
    background-color: #fffbf5;
    margin: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: rgb(251, 240, 223);
    border-width: 2px 0;
    border-style: solid;
    border-color: rgb(243, 233, 217);
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12pt;
}

.header-link {
    height: 30px;
    align-content: center;
    margin: 0 5px 0 5px;
    color: #000000;
    text-align: center;
    text-decoration: none;
}

.header-link:hover {
    color: #57000e;
}

#header-link-current {
    align-content: flex-start;
    pointer-events: none;
    height: 24px;
    padding-top: 8px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #57000e;
    color: #57000e;
}

main {
    max-width: 640px;
    padding: 20px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hi-heading {
    text-align: center;
    margin: 15px 0 15px 0;
}

p {
    margin: 5px 0 5px 0;
    line-height: 1.4;
    font-size: 13pt;
}

.intro-paragraph {
    text-indent: 2.5em;
}

a {
    color: #000000;
}

a:hover {
    color: #57000e;
}

img {
    display: block;
    margin: 20px auto 20px auto;
    border-width: 2px;
    border-radius: 100px;
    border-style: solid;
    border-color: rgb(243, 233, 217);
}

.links-container {
    display: flex;
    flex-direction: row;
    margin: 15px 0;
    gap: 5px;
}



.link-group {
    flex: 1 0 auto;
    width: 32.5%;
    background-color: rgb(251, 240, 223);
    border-color: rgb(243, 233, 217);
    border-style: solid;
    border-width: 1px;
    font-size: 12pt;
}

@media (max-width: 500px) {
  .links-container {
    flex-direction: column;
  }
  .link-group {
    width: 100%;
  }
}

.link-group h4 {
    margin: 15px 0 10px 0;
    text-align: center;
    font-size: 13.5pt;
}

.quote-section {
    margin: 10px 0 0 0;
}

.quote {
    font-size: 12pt;
    text-align: left;
    line-height: 1.2em;
}

.quote-author {
    text-align: right;
    font-size: 12pt;
}

footer {
    width: 100%;
    flex: 1 0 auto;
    margin: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-size: 11pt;
    color: #A57476;
}