html {
    font-size: 13px;
}
@media (max-width: 800px) {
    html {
        font-size: 8px;
    }
}
a{
    color:black;
    text-decoration: underline;
}

a :visited{
    color:black;
}
a:hover {
    text-decoration: underline;
}
#content{
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding-top:200px;
    font-size:150%;
    font-family:  'Khand', 'Myriad Pro', 'Arial';
    font-weight: bold;
    color:white;
}
#header{
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 5000;
    text-align: center;
}
#headerInner{
    background: rgba(1, 1, 1, 0.5);
    text-transform: uppercase;
    text-align: center;
    border-bottom: 4px solid rgba(255, 170, 0, 0.3);
}
.flexTable{
    display:flex;
    -webkit-flex: 1 1 auto;
    flex-wrap: wrap;
}
.flexTable div { flex: 1 1 auto; display:inline-block; }
.flexTable > * { flex: 1 1 auto; }
.machineList> div {
    margin:10px;
    padding:10px;
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    color:black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.machineList>div:hover {
    background-color: white;
}
.applicationList a:hover {
    background-color: #A90000;
    color:white !important;
}
.applicationList a{
    background-color: white;
    color:black;
    flex: 1 1 auto;
    display:inline-block;
    margin:10px;
    padding:10px;
    background-color:white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#headerInner .logo {
    width: 300px;
    max-width:50%;
}
#continueToSite{
    padding:20px;
    background-color: rgba(255, 170, 0, 0.8);
    display:inline-block;
    font-family: 'Khand', 'Myriad Pro', 'Arial';
    font-weight: bold;
    line-height: 0px;
    margin:10px;
    border-radius: 10px;
}
#continueToSite:hover {
    background-color: #A90000;
    color:white !important;
}
.speal {
    padding:20px 0;
    color:white;
    text-align: center;
    text-shadow: 0 0 20px #000000;
    text-transform: uppercase;
    margin: auto;
    max-width: 700px;
    font-size:120%;
}
.speal .invert{
    background-color: white;
    color:black;
    text-shadow: none;
}
.speal .big {
    font-size:150%;
}
#vidBackground {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}
.canvas, #vidBackground #player {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    object-fit: cover;
    background:transparent url('../images/modern-background.jpg') no-repeat 0 0;
}
.videoPlaceholderContainer {
    width: 100%;
    height: 0px;
    position: fixed;
    top:0;
    text-align: center;
}
.videoPlaceholderContainer div {
    width:1280px;
    height:100vh;
    text-align: center;
}
.videoPlaceholder {
    /* Preserve aspet ratio */
    min-width: 100vw;
    min-height: 100vh;
    display: block;
    margin: 0 auto;
}
html, body {
    background: black;
    padding:0;
    margin:0;
    max-width: 100vw;
    overflow-x: hidden;
}
.card {
    width:100%;
    background-color:white;
    color:black;
    text-align: center;
    padding:20px 0px;

    -webkit-box-shadow: 0px 0px 35px -3px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 35px -3px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 35px -3px rgba(0,0,0,0.44);
}
.yellow {
    background-color: rgba(50,50,50, 0.8);
    color:white;
}
.paleYellow {
    background-color: rgba(0,120,164, 0.8);
    color:white;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: table-cell;
    position: relative;
    background:#1a1a1a !important;
}
.cover_content {
    position: relative;
    z-index: 2;
}
.underlay {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    opacity: 0.5;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    transition: opacity 0.2s linear;
}
&:hover .underlay {
     opacity: 0.3;
 }