:root {
    color-scheme: light dark;
    --background-color: white;
    --accent-color: #cc2631;
    --accent-color-dark: #a6000b;
    --content-color: black;
    --input-text-color: #555555;
    --input-background-color: #ecf0f1;
}

body {
    background: var(--background-color);
    -webkit-font-smoothing: antialiased;
    font-family: 'Avenir-Medium', sans-serif;
    height: 100%;
    margin: 0px;
}

canvas {
    height: 100vh;
    z-index: -10;
    position: fixed;
    top: 0px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

a:hover {
    color: var(--accent-color-dark);
}

h1 {
    color: var(--accent-color);
    padding-bottom: 0px;
    margin-bottom: 1%;
    font-size: 250%;
}

h2 {
    color: var(--content-color);
    font-size: 3rem;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}

h3 {
    color: black;
    font-size: 2rem;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}

h5 {
    font-weight: bold;
    color: var(--accent-color);
}

pre,
blockquote {
    background: #42434a;
    padding: 2rem;
    color: white;
    border-radius: 0.2rem;
}

p {
    color: black;
    font-size: 1.7rem;
}

label {
    color: #ffffff;
    display: block;
    font-size: 0.8em;
    font-weight: 600;
    letter-spacing: 0.25em;
    margin: 0 0 1em 0;
    text-transform: uppercase;
}

input,
textarea {
    font-family: inherit;
    font-size: 17pt;
    font-weight: 300;
    letter-spacing: 0.025em;
    line-height: 1.65;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background: var(--input-background-color);
    border: none;
    border-radius: 0;
    display: block;
    outline: 0;
    padding: 0.5em 1em 0.5em 1em;
    text-decoration: none;
    width: 100%;
    color: var(--input-text-color);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select {
    height: 2.75em;
}

span.new {
    background-color: #fc3565;
    font-weight: bold;
    padding: 0.2rem;
    margin-left: 0.4rem;
    color: white;
}

dl {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

dt {
    color: var(--content-color);
    font-size: 12px;
    font-weight: bold;
    float:left;
    clear: both;
    text-align: right;
    width: 32%;
}

dd {
    color: var(--content-color);
    font-size: 12px;
    margin-left: 34%;
    margin-bottom: 8px;
}

#message {
    min-width: 100%;
    min-height: 25rem;
}

.logo a {
    color: var(--content-color);
}

.logo {
    font-family: 'Monoton', cursive;
    color: var(--content-color);
    font-size: 8rem;
}

.row.top p {
    color: var(--content-color);
    margin-top: 1rem;
    text-align: justify;
    font-size: 1.7rem;
}

.contact {
    display: inline-block;
}

.pulled {}

.pulled ul {
    padding-top: 2rem;
}

.pulled ul li {
    list-style: none;
    margin-right: 2rem;
    font-size: 1.8rem;
}

.pulled h2 {
    color: black;
    font-size: 3rem;
}

.pulled ul li span {
    font-size: 1.2rem;
}

.smallLogo {
    font-size: 3.5rem;
}

.services h2 {
    color: #fc3565;
    padding-bottom: 1.5rem;
    font-size: 2rem;
}

.services .title {
    color: black;
    font-size: 3rem;
}

.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.cta {
    text-align: center;
}

.cta p {
    color: white;
    font-size: 2rem;
    display: inline-block;
    margin: 1.5rem;
    text-align: center;
}

.footer {
    padding-bottom: env(safe-area-inset-bottom);
}

.footer p {
    color: var(--content-color);
    font-size: 1rem;
    margin: 0px;
    padding: 0px;
}

.footerLinks {
    margin: 0px;
    padding: 0px;
}

.footerLinks li {
    display: inline-block;
    color: white;
    margin: 5px;
}

.button {
    box-sizing: border-box !important;
    background-color: transparent!important;
    border: 0!important;
    border-radius: 0!important;
    box-shadow: inset 0 0 0 2px var(--content-color) !important;
    color: var(--content-color) !important;
    cursor: pointer!important;
    display: inline-block!important;
    font-size: 0.8em!important;
    font-weight: 600!important;
    height: 3.5em!important;
    letter-spacing: 0.25em!important;
    line-height: 3.5em!important;
    padding: 0 1.75em!important;
    text-align: center!important;
    text-decoration: none!important;
    text-transform: uppercase!important;
    white-space: nowrap!important;
    margin-bottom: 2rem!important;
}

.button:hover {
    border-bottom-color: transparent!important;
    color: var(--accent-color) !important;
    box-shadow: inset 0 0 0 2px var(--accent-color) !important;
}

.button:focus {
    color: #c1284d !important;
}

.services .code {
    background: #9bf1ff;
}

.services .cms {
    background: #7C75B2;
}

.services .seo {
    background: #C2A9B0;
}

.services .social {
    background: #DEB68F;
}

.services p {
    color: white;
}

.related {
    padding: 2rem;
    color: white;
    text-align: center;
}

.related a {
    display: block;
}

.related a:first-child {
    display: none;
}

.social {
    padding: 2rem;
    background: #2e303a;
    color: white;
    text-align: center;
}

.social a {
    margin-left: 2rem;
}

article p {
    text-align: left!important;
}

article .posted {
    font-size: 1.4rem!important;
    margin: 0rem;
    color: white!important;
}

article a {
    border-bottom: 1px #fc3565 dashed;
}

article li {
    color: #e6e6e6;
    margin: 2rem;
}

iframe {
    border-radius: 3px;
    width: 302px;
    height: 76px;
}

/* Mobile first queries */


/* Larger than mobile */

@media (min-width: 400px) {}


/* Larger than phablet */

@media (min-width: 550px) {}


/* Larger than tablet */

@media (min-width: 750px) {
    .services {
        width: 100%;
        max-width: 100%;
    }
    .services .column {
        margin: 0;
    }
}


/* Larger than desktop */

@media (min-width: 1000px) {
    .footer {}
}


/* Larger than Desktop HD */

@media (min-width: 1200px) {
    h1 {
        font-size: 4rem;
    }
}

#icons {
    white-space: nowrap;
    display: table;
    padding: 13px 0;
    width: 85%;
    margin-left: 7.5%;
}

.icon {
    vertical-align: middle;
    display: table-cell;
    padding: 0 1.5%;
}

.icon img {
    max-width: 100%;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #181a1b;
        --accent-color: #fc3767;
        --accent-color-dark: #d60f3f;
        --content-color: #e9e7e4;
        --input-text-color: #aaaaaa;
        --input-background-color: #0f1011;
    }
}
