@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: "Source Code Pro", monospace;
    margin:0px;
    background-color: #F0EDCC;
    font-size: 18px;
}

.topbar {
    display:flex;
    flex-wrap:nowrap;
    align-items: center;
    justify-content:space-between;
    background-color: #02343F;
    color: #F0EDCC;
    text-align: left;
    padding: 15px;
    margin-bottom:5vh;
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.footer {
    display:flex;
    flex-wrap:nowrap;
    align-items: center;
    justify-content:space-between;
    background-color: #02343F;
    color: #F0EDCC;
    text-align: left;
    padding: 15px;
    margin-bottom:0px;
    min-height:10vh;
    margin-top:5vh;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.hero {
    text-align: center;
    margin-bottom:5vh;
}

.section {
    flex-wrap:wrap;
    display:flex;
    align-items: center;
    justify-content:center;
    text-align: left;
    max-width: 110ch;
    margin: 30px auto;
    padding-left: 5ch;
    padding-right: 5ch;
}

.element-full h2 {
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.element-full h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.element-full pre {
    background-color: #02343F;
    color: #F0EDCC;
    padding: 1em;
    overflow-x: auto;
    border-radius: 4px;
}

.element-full code {
    background-color: #02343F;
    color: #F0EDCC;
    padding: 0.2em 0.4em;
    border-radius: 3px;
}

.element-full pre code {
    background-color: transparent;
    padding: 0;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.results-table th,
.results-table td {
    border: 1px solid #02343F;
    padding: 0.5em;
    text-align: left;
}

.results-table th {
    background-color: #02343F;
    color: #F0EDCC;
}

@media only screen and (max-width: 145ch) {
    .element-full{
        width:45ch;
    }
    hr{
        max-width: 65ch;
        margin:0 auto;
        margin-bottom:5vh;
        margin-top:5vh;
    }
    .clients{
        flex-basis:37%;
        align-items: center;
        text-align: center;
    }
}

@media only screen and (min-width: 146ch) {
    .element-full{
        width:110ch;
    }
    hr{
        max-width: 120ch;
        margin:0 auto;
        margin-bottom:5vh;
        margin-top:5vh;
    }
}
