@font-face {
    font-family: 'roboto';
    src: url('../font/Roboto-Regular.ttf');
}

* {
    transition: all 0.2s ease-in-out, transform 0.2s, opacity 0.2s;
}


html {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: roboto;
}


.menuHeader {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    border-bottom: solid 1px #e0e0e0;
    background-color: white;
    z-index: 100;
}

.menuHeaderLogo {
    float: left;
    width: 50px;
    cursor: pointer;
    height: 50px;
}

.menuHeaderSub {
    float: left;
    height: 35px;
    padding-top: 15px;
    border-bottom: solid 3px transparent;
    width: 80px;
    text-align: center;
    font-size: 0.9em;
    cursor: pointer;
}
.menuHeaderSub:hover {
    background-color: #fafafa;
    border-bottom-color: #d0d0d0;
}


.content {
width: calc(100% - 41px);
height: calc(100vh - 85px);
padding: 20px;
padding-top: 60px;
padding-bottom: 20px;
position: absolute;
top: 0px;
left: 0px;
overflow: auto;
text-align: center;
}
.contentPage {
    position: relative;
    top: 0px;
    left: 0px;
}





.indexWelcome {
width: 100%;
font-size: 2em;
text-align: center;
margin-top: 100px;
}
.gamesLabel {
    width: 100%;
    font-size: 2em;
    text-align: center;
    margin-top: 30px;
}





.supportTitle {
    text-align: center;
    font-size: 1.5em;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.supportTable {
    width: calc(100% - 20px);
    margin: 10px;
}
.supportInput{
    width: 100%;
    margin-top: 25px;
}

.supportLabel {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 0.9em;
    padding-right: 10px;
    transition: all 0s, transform 0s;
}

.supportInputText {
    width: calc(100% - 10px);
    padding: 5px;
    border: solid 1px #d0d0d0;
    border-radius: 4px;
}
.supportInputSend {
    width: 150px;
    border: solid 2px #d0d0d0;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    margin-left: calc(50% - 77px);
    cursor: pointer;
}
.supportInputSend:hover {
    background-color: #fafafa;
}
.supportInputSend:active {
    transform: translateY(2px);
} 








@media only screen and (min-width: 480px) {
    /* For tablets: */
.supportTable {
    width: 465px;
    margin-left: calc(50% - 220px);
}    
   
 
}



@media only screen and (min-width: 640px) {
    /* For tablets: */
.supportTable {
    width: 650px;
    margin-left: calc(50% - 350px);
}


.supportLabel {
    width: 200px;
    text-align: right;
}

 
.supportInputText {
    width: 400px;
}
}










