section {
    width: 100%;
    align-content: center;
    margin: auto;
}

.btn {
    background-color: white;
    margin: auto;
    font-size: 32px;
    color: blue;
    text-align: center;
    padding: 10px 20px 10px 20px;
    border: 2px solid blue;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: rgba(0, 0, 256, 0.05);
}

#session, #comm {
    font-size: 24px;
    border: solid 2px blue;
    border-radius: 10px;
    padding: 10px 16px;
    margin-top: 10px;
    min-height: 28px;
}

#session {
    text-align: center;
}

.player1Title {
    float: left;
}

.player2Title {
    float: right;
}

#player1, #player2 {
    width: 15%;
    height: 150px;
    color: black;
    border: 2px solid blue;
    border-radius: 10px;
    padding: 10px 16px;
    display: inline-block;
    float: left;
    margin-top: 10px;
}

#player2 {
    float: right;
}

#canvas {
    width: 70%;
    height: 300px;
    margin: 10px;
    border: solid blue;
    border-radius: 30px;
}

.buttons {
    margin-top: 25px;
}

.info {
    margin-top: 50px;
    text-align: center;
}

a:hover {
    color: blue;
}

a {
    text-decoration: none;
}

.inline {
    display: flex;
    justify-content: center;
}

.blue {
    color: blue;
}

.moreevo {
    width: 60%;
}

ol {
    margin-left: 24px;
}

@media only screen and (max-width: 768px) {
    #canvas {
        margin: 2px;
    }

    #comm {
        display: none;
    }

    .btn {
        font-size: 18px;
    }
}
