:root {
    font-size: 14pt;
}

body {
    font-family: "PT Sans";
    font-weight: normal;
    color: var(--c-ocean);
    padding: 0;
    margin: 0;
    background-color: white;
    line-height: 175%;
    display: grid;
    grid-template-rows: auto auto auto /*auto*/ 1fr;
    min-height: 100vh;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--c-ocean);
    text-transform: uppercase;
    clear: both;
}

h2 {
    font-weight: bold;
    color: var(--c-ocean);
    clear: both;
}

h2#date {
    opacity: 0.75;
    margin-bottom: 1rem;
}

h3 {
    font-weight: bold;
    color: var(--c-ocean);
    clear: both;
}

a {
    position: relative;
    color: var(--c-coral);
    text-decoration: none;
}
a:hover::after {
    background-size: 73.8px 3px;
    height: 3px;
    border-radius: 5px;
    content: "";
    width: 100%;
    bottom: -0.2em;
    right: 0;
    position: absolute;
    background-image: url("dam-wave-underline.svg");
    background-repeat: repeat-x;
    animation-name: link-wave;
    animation-duration: 7.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes link-wave {
    from {
        background-position: 0px 0;
    }
    to {
        background-position: 123px 0;
    }
}

section.page-content {
    padding: var(--s-text-padding);
    padding-top: 0;
}
section.page-content > :first-child {
    margin-top: 0;
    margin-block-start: 0;
}

p {
    text-align: justify;
}

.linkonly ul {
    list-style-type: none;
}

.linkonly li > a::before {
    list-style-type: none;
    content: "» "
}

.image-description > p {
    display: inline;
}

.image-float > img {
    max-width: 100%;
}

a.no-underline::after {
    display: none;
}

.page-content img {
    max-width: 100%;
}
