html,body{
    margin: 0;
    padding: 0;
    width: 100%;
}
body{
    background-image: url('../img/darkWoodBackground.jpeg');
    text-align: center;
    background-color: black;
    color: white;

}
.background{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    background-image: url('../img/indexBackground.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}
h3, p{
    color: white;
}
p{
  font-size: 120%;
}
.homeHed{
  color: #ffff99;
}
.form{
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 1vw;
    background: rgba(0,0,0,0.6); /* For browsers that do not support gradients */
    box-shadow: 2px 2px 10px white;
    display: none;

    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    width: 95vw;
}
.formHeader{
    height: 20px;
    background: rgb(240,240,240); /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(yellow, gray); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(yellow, gray); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(yellow, gray); /* For Firefox 3.6 to 15 */
    background: linear-gradient(yellow, gray); /* Standard syntax */
    text-align: center;
    font-weight: bold;

}
.asTable{
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
}
.asRow{
    display: table-row;
    width: 100%;
    margin: 0;
    padding: 0;
}
.asCell{
    display: table-cell;
}
.asTableHeader{
    display: table-header-group;
}
.leftMargin{
    margin-left: 5px;
}
.topMargin{
    margin-top: 5px;
}
.rightMargin{
    margin-right: 5px;
}
.bottomMargin{
    margin-bottom: 5px;
}
.alignRight{
    text-align: right;

}
.logoCon{
    top: 5px;
    left: 5px;
    position: absolute;
    display: inline-block;
    margin-left: 10px;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-image: url(../img/Logo.png);
    background-size: contain;
}
.headerNameCon{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;

}
.headerName{
    color: #ffff99;
    font-size: 80px;
    text-shadow: 2px 2px 8px white,
        1px 1px 0px white;

    font-size: calc(5px + 5vw);
}
.pointer{
    cursor: pointer;
}

.tabSelected{
    background-color: rgb(175,14,14);
    box-shadow: 1px 1px 3px white;
    box-shadow: -1px -1px 3px white;
    color: black;
}
.displayArea{
    margin: 0 auto;
    width: 98%;
}

    /*MAIN MENU*/
ul{
    list-style: none;
    display: inline-block;
    user-select: none;
    position: relative;
}
li{
    line-height: calc(20px+1vw);
    border-radius: 10px;
    border: 1px solid lightGray;
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
    box-shadow: 1px 1px 3px white;
    text-align: center;
    margin-right: 10px;
    color: lightgray;
    width: calc(50px + 3.5vw);
    height: calc(15px + 1.5vw);
    max-height: 25px;
    font-size: calc(7px + 0.8vw);
}

    /*FORM HOME*/
#frmHome {
    display: block;
    opacity: 1;
    max-width: 800px;

}

    /*FORM CONTACT*/
#frmContact{
    max-width: 400px;
}
#frmContact label{
    display: block;
    font-size: 20px;
    margin-top: 5px;
}
#frmContact a{
    font-size: 16px;
}


@media screen and (max-width: 800px) {
    .logoCon{
        display: none;
    }
}
