h1 {
    text-align: center;
    margin-top: 41px;
}

.menu-container {
    position: absolute; right: 20px; top: 20px;
}

.menu-container a {
    font-size: 15px;
    padding: 0 0 0 15px;
}

.center {
    text-align: center;
}

.step {
    /*display: none;*/
    border: 1px solid black;
}

#error {
    position: fixed;
    bottom: 0;
    width: 90%;
    text-align: center;
    font-size: 18px;
    margin: 0 auto;
    right: 0;
    left: 0;
    padding: 7px;
    background: red;
    color: #EFEFEF;
    z-index: 10;
    display: none;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.overlay .content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #EFEFEF;
    padding: 20px;
    border-radius: 5px;
    padding: 50px;
    text-align: center;
    font-size: 20px;
}

#game-start {
    display: none;
}

#game-started {
    display: none;
}

#game-started button {
    display: none;
}

#table {
    border: 1px solid black;
    margin: 10px;
    background-color: green;
    padding: 20px;
    text-align: center;
    min-height: 220px;
}

#cards {
    margin: 10px;
    text-align: center;
}

.notturn {
    opacity: 0.5;
}

.card {
    background: #EFEFEF;
    border: 1.5px solid black;
    width: 100px;
    height: 180px;
    position: relative;
    margin: 10px -20px;
    display: inline-block;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 30px;
    padding-top: 17px;
}

#fetch-cards {
    display: none;
    text-align: center;
}

#fetch-cards button {
    width: 200px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid green;
    color: white;
    background-color: green;
    font-size: 16px;
}

.self {
    font-weight: bold;
}

#leave-game {
    display: none;
    float: right;
}
/* 
#leave-game a {
    font-size: 15px;
    padding: 6px 15px;

} */

#result-overlay table {
    border-collapse: collapse;
    width: 100%;
}

#result-overlay table, #result-overlay th, #result-overlay td {
    border: 1px solid #cccccc;
    padding: 10px;
}

#result-overlay td {
    width: 50%;
}

#result-overlay {
    display: none;
}

#restart {
    display: none;
}

.clubs {
    background-image: url("../images/clubs.png");
}

.diamond {
    background-image: url("../images/diamond.png");
}

.hearts {
    background-image: url("../images/hearts.png");
}

.spades {
    background-image: url("../images/spades.png");
}

.input-text {
    height: 34px;
    border: 1px solid #cccccc;
    padding-left: 8px;
}

.button {
    font-size: 14px;
    height: 38px;
    color: white;
    background-color: #4267B2;
    border: 0px;
    border-radius: 2px;
    padding-left: 12px;
    padding-right: 12px;
}

.players {
    width: 100%;
}

.tac {
    text-align: center;
}

.turn {
    font-weight: bold;
}