﻿body {
    margin: 0;
}

.h1{
    font-size: 70px;
    font-family: 'Audiowide', Helvetica, sans-serif;
    color: rgba(255,255,255,0.81);
    padding: 20px 0;
    -webkit-animation: neon-text 1.5s ease-in-out infinite alternate;
    -moz-animation: neon-text 1.5s ease-in-out infinite alternate;
    animation: neon-text 1.5s ease-in-out infinite alternate;
}

.h2{
    font-size: 20px;
    font-family: 'Audiowide', Helvetica, sans-serif;
    color: rgba(255,255,255,0.81);
    padding: 15px 0;
}

.h3{
    font-size: 14px;
    font-family: 'Audiowide', Helvetica, sans-serif;
    color: rgba(255,255,255,0.81);
    padding: 10px 0;
}

.menu{
    position: absolute;
    color: white;
    cursor: pointer;
    font-size: 48px;
    z-index: 3;
}

.menu:hover{
    color: rgba(255,255,255,0.81);
    -webkit-animation: neon-menu 1.5s ease-in-out infinite alternate;
    -moz-animation: neon-menu 1.5s ease-in-out infinite alternate;
    animation: neon-menu 1.5s ease-in-out infinite alternate;
}

.inputText1{
    font-size: 24px;
    font-family: 'Segoe UI', Helvetica, sans-serif;
}

.inputText2{
    font-size: 18px;
    font-family: 'Segoe UI', Helvetica, sans-serif;
}

.inputButtonShort {
    font-family: 'Audiowide', Helvetica, sans-serif;
    width: 200px;
    height: 40px;
    background: #343434;
    color: white;
}

.inputButtonLong {
    font-family: 'Audiowide', Helvetica, sans-serif;
    width: 100%;
    height: 40px;
    background: #343434;
    color: white;
}

.tblLogin, .tblRegister {
    padding-bottom: 20px;
}

.tblSteamBackups{
    margin: 0 auto;
    text-align:left;
    font-size: 14px;
    font-family: 'Audiowide', Helvetica, sans-serif;
    color: rgba(255,255,255,0.81);
    padding: 10px 0;
}

.tblSteamBackups td{
    padding-top: 3px;
    padding-bottom: 3px;
}

.tblSteamBackups td:first-child{
    padding-right: 40px;
}

.tblSteamBackups td:last-child{
    width: 100px;
}

.tblSteamBackups a {
    color: white;
}

.warning{
    color: red;
}

.wrap-space-around {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.wrap-space-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}