:root {
    --main-light: #e6e6e6ff;
    --main-dark: #39393a;
    --accent-light: #FF8552;
    --accent-dark: #297373;
}

h4,
.h4 {
    font-size: 1.333rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp(1rem, 4.333vw + 1rem, 1.333rem);
}

h3,
.h3 {
    font-size: 1.776889rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp(1.19051563rem, 4.58637337vw + 1rem, 1.776889rem);
}

h2,
.h2 {
    font-size: 2.368593037rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp(1.5869573348rem, 4.7816357022vw + 1rem, 2.368593037rem);
}

h1,
.h1 {
    font-size: 3.1573345183rem;
    line-height: calc(2px + 2ex + 2px);
    margin-bottom: 0.65em;
    font-size: clamp(2.1154141273rem, 5.041920391vw + 1rem, 3.1573345183rem);
}

p,
li,
h1,
h2,
h3,
h4 {
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-top: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    line-height: 1.5;
    min-height: 100vh;
    background-color: var(--main-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--main-dark);
}

p {
    font-size: 1.5rem;
    color: var(--main-dark);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.button {
    transition: all .5s ease;
    border: none;
    font-weight: normal;
    border-radius: 0.3em;
    text-transform: initial;
    font-size: 1.5rem;
}

.button.button-primary {
    display: inline-block;
    margin: 0 0.3em 0.3em 0;
    border-radius: 0.15em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 400;
    color: #FFFFFF;
    box-shadow: inset 0 -0.6em 0 -0.35em rgba(0, 0, 0, 0.17);
    text-align: center;
    position: relative;

    font-weight: 700;
    background-color: var(--accent-light);
    color: #FFF !important;
    box-shadow: inset 0 -0.6em 0 -0.35em rgb(0 0 0 / 17%);
    border-radius: 0.3em;
}

.button.button-primary:hover,
.button.button-primary:focus {
    background-color: var(--accent-light);
}

.button:active {
    top: 0.1em;
}

.white-bg {
    background-color: #FFF;
}

#navbar {
    padding-top: 2rem;
}

#navbar .logo {
    height: 32px;
    width: 64px;
}

#navbar #navigation {
    color: var(--main-dark);
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
}

#navbar #navigation .nav-link {
    padding-bottom: 8px;
    margin: 0 16px;
}

#navbar #navigation .nav-link.selected {
    border-bottom: 2px solid var(--accent-light);
}

#navbar #navigation .nav-link a {
    padding-bottom: 18px;
    color: var(--main-dark);
    font-size: 1.776889rem;
    text-decoration: none;
    font-weight: bold;
    text-shadow: none !important;
}

section .inset {
    margin-top: 128px;
    margin-bottom: 64px;
}

section .inset h1 {
    color: var(--main-dark);
}

#profile-splash img {
    width: 50%;
    margin-bottom: -110px;
    margin-left: 5%;
}

section .call-out {
    background-color: var(--main-dark);
    padding: 32px;
    margin-top: 32px;
    margin-bottom: -64px;
    box-shadow: inset 0 -0.6em 0 -0.35em rgb(0 0 0 / 17%);
    border-radius: 0.3em;
}

section .call-out h1 {
    margin: 8px 0;
    color: var(--main-light);
}

section .call-out p {
    color: var(--main-light);
}

section .call-out .button {
    float: right;
    margin: 9px 0;
}

#footer {
    padding-top: 128px;
}

#footer .row {
    border-top: 2px solid var(--main-dark);
    padding: 3rem 0;
}

#footer #social {
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
}

#footer #social img {
    width: 30px;
    height: 30px;
    margin: 0 4px;
}

.article {
    width: 100%;
    background-color: #FFF;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: inset 0 -0.6em 0 -0.35em rgb(0 0 0 / 17%);
    border-radius: 0.3em;
}

.article:last-child {
    margin-bottom: 0px;
}

.article .article-image {
    width: 25%;
    float: left;
    padding-right: 24px;
}

.article .article-image img {
    width: 100%;
}

.article .article-content {
    margin-left: 25%;
    width: 75%;
    margin-bottom: 64px;
}

.article .article-link {
    float: right;
    margin-bottom: 24px;
}

@media all and (max-width:420px) {

    .article .article-image,
    .article .article-content {
        width: 100%;
        padding: 0;
        margin: 0 0 24px 0;
    }

    .article .article-content {
        margin-bottom: 64px;
    }

    .button {
        display: block;
        margin: 0.4em auto;
        width: 100%;
    }
}