html{
    font-family: "Varela Round", sans-serif;
}
header{
    height: 85px;
    background-image: url(../img/bg-inner_page.jpg);
}
body{
    height: 100%;
}
.sitecontainer{
    height: 100%;
}

main{
    width: 100%;
    height: 90%;
}

.container-fluid{
    height:100%;
}

#cont{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #FFF;
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.49);
}
#tables{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80%;
    align-items: center;
    justify-content: center;
}
h1,p{
    margin: 0;
}
p{
    margin-top: 10px;
}
.table{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.btn{
    margin: 10px;
    width: 200px;
    height: 50px;
    font-size: 30px;
    color: #3C9247;
    background-color: white;
    border: 2px solid #3C9247;
    border-radius: 20px;
    cursor: pointer;
}
.playerinput{
    width: 250px;
    height: 30px;
    margin: 10px;
    border: 1px solid black;
    border-radius: 10px;
    font-size: 20px;
    padding-left: 5px;
}
.pair{
    color: #1F4F8F;
    margin: 0;
}
h1,h2{
    color: #1F4F8F;
}
h1{
    padding-top: 10px;
}
#start{
    display: inline-block;
    text-align:center;
    width: 200px;
    height: 50px;
    font-size: 30px;
    border-radius: 30px;
    border:none;
    background-color: #1F4F8F;
    font-weight: bold;
    color: white;
    line-height: 50px;
    cursor: pointer;
    margin-bottom:20px;
}


input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height:30px;
    color: #333;
    font-size: 18px;
    user-select: none;
    margin: 15px;
}

input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border: 1px solid blue;
    border-radius: 50%;
    background: #fff;
}

input[type="radio"]:checked + label:after {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 4px;
    font-size: 23px;
    color: #3c9247;
    font-weight: 400;
}