h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.5;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

.lead {
    font-weight: 300;
    font-size: 2rem;
}

.banner {
    font-size: 2.7rem;
    margin: 0;
    padding: 2rem 1rem;
    background-color: #00A1E2;
    color: white;
}

body {
    margin: 0;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

code {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word;
}

.left-column {
    padding: .75rem;
    max-width: 75%;
    min-width: 55%;
}

.right-column {
    padding: .75rem;
    max-width: 25%;
}

.container {
    display: flex;
    width: 100%;
}

li {
    margin: 0.75rem;
}

.right-section {
    margin-left: 1rem;
    padding-left: 0.5rem;
}

.right-section h3 {
    padding-top: 0;
    font-weight: 200;
}

.right-section ul {
    border-left: 0.3rem solid #00A1E2;
    list-style-type: none;
    padding-left: 0;
}

.draw-outline {
    display: inline-block;
    padding: 16px 28px;
    border: 2px black solid;
    text-align: center;
    text-decoration: none;
    color: black;
    position: relative;
    -webkit-transition: border-color 0.35s ease-in-out;
    transition: border-color 0.35s ease-in-out;
    z-index: 1;
}

.draw-outline:before, .draw-outline:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 0px;
    box-sizing: content-box;
    z-index: -1;
    -webkit-transition: -webkit-transform 0.25s ease-in-out;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    padding-left: 2px;
}

.draw-outline:before {
    top: -2px;
    left: -2px;
    border-top: 2px transparent solid;
    border-right: 2px transparent solid;
}

.draw-outline:after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px transparent solid;
    border-left: 2px transparent solid;
}

.draw-outline:hover {
    color: #00A1E2;
    -webkit-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
    border-color: black;
    -webkit-animation: outline-reset 0.35s 1 forwards;
    animation: outline-reset 0.35s 1 forwards;
}

.draw-outline:hover:before {
    -webkit-animation: top-right-border 0.75s 1 0.35s forwards;
    animation: top-right-border 0.75s 1 0.35s forwards;
}

.draw-outline:hover:after {
    -webkit-animation: bottom-left-border 0.75s 1 1.1s forwards;
    animation: bottom-left-border 0.75s 1 1.1s forwards;
}

.draw-outline--tandem:hover:after {
    -webkit-animation: bottom-left-border 0.75s 1 0.35s forwards;
    animation: bottom-left-border 0.75s 1 0.35s forwards;
}

.draw-outline:active:before, .draw-outline:active:after {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@-webkit-keyframes outline-reset {
    0% {
        border-color: black;
    }
    100% {
        border-color: transparent;
    }
}

@keyframes outline-reset {
    0% {
        border-color: black;
    }
    100% {
        border-color: transparent;
    }
}

@-webkit-keyframes top-right-border {
    0% {
        border-color: #00A1E2;
        width: 0px;
        height: 0;
    }
    50% {
        width: 100%;
        height: 0;
    }
    100% {
        border-color: #00A1E2;
        width: 100%;
        height: 100%;
    }
}

@keyframes top-right-border {
    0% {
        border-color: #00A1E2;
        width: 0px;
        height: 0;
    }
    50% {
        width: 100%;
        height: 0;
    }
    100% {
        border-color: #00A1E2;
        width: 100%;
        height: 100%;
    }
}

@-webkit-keyframes bottom-left-border {
    0% {
        border-color: #00A1E2;
        width: 0px;
        height: 0;
    }
    50% {
        width: 100%;
        height: 0;
    }
    100% {
        border-color: #00A1E2;
        width: 100%;
        height: 100%;
    }
}

@keyframes bottom-left-border {
    0% {
        border-color: #00A1E2;
        width: 0px;
        height: 0;
    }
    50% {
        width: 100%;
        height: 0;
    }
    100% {
        border-color: #00A1E2;
        width: 100%;
        height: 100%;
    }
}
