/*
 * -- SPLASH STYLES --
 */
.splash-container {
    padding: 100px 0 50px 0;
    background: url("/assets/img/bg/roots-md.webp");
    background-color: #006439;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.splash {
    width: 80%;
    margin: auto;
    text-align: center;
}

.splash h1 {
    font-size: 20px;
    font-optical-sizing: auto;
    font-style: italic;
    color: white;
    font-weight: 400;
    text-shadow: 1px 1px 15px black;
}

.splash-container a.pure-button-primary {
    background: white;
    color: #21452a;
    border-radius: 5px;
    font-size: 140%;
}

.splash-container .pure-button {
    margin: 1rem;
}


/*
* -- All services uses the card --
*/
.card-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    color: #000;
    word-wrap: break-word;
    text-align: left;
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem;
}

.card:hover {
    background-color: #ddf8e0;
}

.card-body {
    flex: 1 1 auto;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 0 .5rem 0;
}
.card-title a {
    text-decoration: none;
    color: #000;
}

.card-footer .pure-button {
    background-color: #ddd;
    margin: 0;
    padding: 15px;
    color: #000;
}

.tiny-logo {
    width: auto;
    margin: auto;
    max-height: 80px;
}


/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    margin-bottom: 0.2em;
}

.content-head-exlamation {
    font-size: 2.5rem;
    color: #111;
    line-height: .8em;
    margin: 0 0 0.8em 0;
}

#tjanster {
    background: #c2e1c6;
    color: #aaa;
}

/*
 * -- PURE FORM STYLES --
 */
.pure-form input[type] {
    font-size: 100%;
    width: 100%;
    margin-bottom: 0.6em;
}
.pure-form textarea {
    margin-bottom: 0.6em;
}
input:required:valid,
textarea:required:valid {
    border: 1px solid #89c379;
    color: #5b8050;
}

input:focus:invalid {
    border: 1px solid #f38472 !important;
    color: #f38472;
}
/* Messages from form submission */
.alert {
    display: block;
    color: #000;
    font-weight: 400;
    padding: 12px 20px 12px 20px;
    margin: 0 0 20px 0;
}

.alert-success {
    border: 1px solid #5b8050;
    border-radius: 4px;
    background-color: #89c379;
}

.alert-fail {
    border: 1px solid #af5f53;
    border-radius: 4px;
    background-color: #f38472;
}