/*
 * Accent:    #7F55FE  (purple)
 * Teal:      #04CAFA
 * Text:      #DDDDDD
 * 
 * To add a background image, set:
 *   body { background-image: url('your-image.jpg'); }
 * The backgroundPan animation will pan it left-to-right automatically.
 */

html, body {
    height: 100%;
}

body {
    background: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 50% 0%;
    font-family: "Open Sans", sans-serif;
    margin: 0px;
    padding: 0px;
    color: #DDDDDD;
    background-position-x: 0%;
    animation: backgroundPan 10s linear infinite alternate;
    cursor: default;
}

.floatingthing {
    position: absolute;
    color: #DDDDDD;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
}

.spec_section {
    border-bottom: 4px solid #ff3434;
    background-color: #1e1e1eee;
    margin-bottom: 10px;
    padding: 10px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.75);
    width: 520px;
}

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#machines {
    left: 30px;
    top: 30px;
    z-index: 10;
    bottom: 70px;
}

#footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    font-size: 1.2em;
    background: rgba(30, 30, 30, 0.9);
    color: #DDDDDD;
    border-bottom: 4px solid #ff3434;
    z-index: 2;
    line-height: 34px;
}

h1 {
    margin: 0px;
    padding: 0px;
    color: #ff3434;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    padding: 0px;
}

li span {
    color: #DDDDDD;
    font-weight: bold;
    font-size: 1.1em;
    padding-right: 10px;
    display: inline-block;
    font-family: "Open Sans Condensed", sans-serif;
    text-align: right;
}

li:nth-child(even) {
    background-color: rgba(4, 202, 250, 0.1);
}

h1 span {
    color: #DDDDDD;
    font-weight: 700;
    font-family: "Open Sans Condensed", sans-serif;
}

.floatingthing li span {
    width: 110px;
}

a, .pcmr {
    color: #DDDDDD;
}

#footer a {
    text-decoration: none;
}

#footer .fab {
    font-size: 1.5em;
    color: #DDD;
    display: inline-block;
    position: relative;
    top: 4px;
}

.goright {
    background: #ff3434;
    line-height: 28px;
    padding: 10px 14px 6px 14px;
    color: #000000;
    font-weight: bold;
    float: right;
    border-top-left-radius: 10px;
    margin: 0 0 0 50px;
}

.leftside {
    padding: 4px 10px 6px 10px;
    float: left;
}

a:link, a:hover {
    text-decoration: none;
}

.spacer {
    width: 25px;
    display: inline-block;
}

.partlink {
    float: right;
    color: #DDDDDD;
}

@keyframes backgroundPan {
    0% {
        background-position-x: 0%;
    }
    100% {
        background-position-x: 100%;
    }
}

.partlink::after {
    content: '\f35d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.contact {
    margin: 0px 10px;
    line-height: 44px;
}
