/* gleesoft.css
mobile-first desigh
by Lee Samdahl
*/
body {
    background-color: black;
    color: #eeeeee;
    font-family: "Segoe UI",Arial,sans-serif;
}

header#header_full {
    background-image: url('/images/website-hosting-concept-with-circuits.jpg');
    background-color: #000000; /* Used if the image is unavailable */
    height: 50vw;
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    padding: 2rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    opacity: 1;
    transition: opacity 1s;
}

header#header_fixed {
    background-image: url('/images/website-hosting-concept-with-circuits.jpg');
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    height: 240px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 2rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s;
    z-index: 10;
}

header#header_full h1 {
    font-size: 68px;
    max-width: 400px;
    text-shadow: -2px 2px 2px #000,
    2px 2px 2px #000,
    2px -2px 2px #000;
}

header#header_full p {
    line-height: 2;
    text-shadow: -2px 2px 2px #000,
    2px 2px 2px #000,
    2px -2px 2px #000;
}

header#header_fixed h1 {
    text-shadow: -2px 2px 2px #000,
    2px 2px 2px #000,
    2px -2px 2px #000;
    margin: 0;
    padding: 0;
}

header#header_fixed p {
    line-height: 2;
    text-shadow: -2px 2px 2px #000,
    2px 2px 2px #000,
    2px -2px 2px #000;
    margin: 0;
    padding: 0;
}

.main {
    padding: 1rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

section {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
}

section > ul > li {
    margin-top: 1em;
}

ul > ul > li {
    margin-top: 6px;
}

#cust_software_image {
    order: 1;
}

#contact {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
}

#solid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-bottom: 1rem;
}

footer {
    padding: 1rem;
    background: linear-gradient(to bottom, #474747, #054c86 50%)!important;
}

.form_rows {
    padding: 2px 0 3px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: stretch;
    align-items: baseline;
    width: 100%;
    margin-bottom: 8px;
}

.form_label {
    display: inline-block;
    width : 185px;
    vertical-align: top;
    font-weight: bold;
}

.form_cell {
    display: inline-block;
    vertical-align: top;
    flex-grow: 1;
}

.form_error{
    display: inline-block;
    vertical-align: top;
    color: red;
    padding-left: 10px;
    font-size: 12px;
    font-weight: bold;
}

input, select, textarea {
    background-color: #dddddd;
    border: none;
    padding: 4px;
    border-radius: 4px;
}
input:disabled, select:disabled, textarea:disabled {
    background-color: transparent;
}

a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:visited {
    color: unset;
}
button.buttonBar {
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border: none;
    border-radius: 4px;
    /*background-color: transparent;*/
    background-color: #222222;
    color: #eeeeee;
    cursor: pointer;
    box-sizing: content-box;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}
button.buttonBar:hover {
    background-color: #054c86;
    /*color: darkgreen;*/
    text-decoration: none !important;
}
button.buttonBar:disabled {
    color: grey;
}
.buttonBar:active {
    position: relative;
    top: 1px;
    left: 1px;
}
.block {
    width: 100%;
    position: absolute;
    bottom: 0px;
    top: 0px;
    box-shadow: inset -10px -10px 10px 20px black;
}
/* Default icon size */
i {
    font-size: 2em;
}
i.smaller_icon {
    font-size: 18px;
}

/* Animations */
.scroll_images {
    opacity: 0;
    transform: scale(1.2);
}

@media (prefers-reduced-motion: no-preference) {
    .img-animation {
        transition: opacity 1.5s ease, transform 1.5s ease;
    }
}

.img-animation {
    opacity: 1;
    transform: none;
}

@media (min-width: 640px) {

    header#header_fixed {
        height: 80px;
    }

    p, li {
        font-size: large;
    }
}

@media (min-width: 768px) {
    .main {
        display: block;
        max-width: 920px;
        margin: 0 auto;
    }
    section {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    #cust_software_image {
        order: 0;
    }

}

@media (min-width: 1024px) {

}
