body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h3 {
    margin: 0;
}

.opcoes img {
    width: 50px;
}

.botao {
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background-color: #696969;
    margin: 1em;
}

.button {
    background-color: #696969;
}


.campo {
    height: 350px;
    width: 600px;
    background-color: #696969;
    display: flex;
    border-radius: 50px;
}

.campo img {
    width: 150px;
}

.player {
    height: 100%;
    width: 50%;
}

.player div,
.bot div {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.bot {
    height: 100%;
    width: 50%;
}

.player,
.bot {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

input {
    padding: 10px 30px;
    background-color: #ffbd2f;
    color: #000000;
    font-weight: bold;
    border-radius: 25px;
    border: none;
    transition: .6s;
    font-size: 18px;
    margin-bottom: 1em;
}

input:hover {
    background-color: #696969;
    color: white;
    cursor: pointer;
}

.placar {
    width: 100vw;
    display: flex;
    justify-content: space-between;
}

#placar-player,
#placar-bot {
    background-color: #ffffff;
    padding: 5px 10px;
    color: black;
    font-size: 30px;
    font-weight: normal;
}

@media (max-width: 605px) {
    .campo {
        height: 250px;
        width: 500px;
    }
}

@media (max-width: 505px) {
    .campo {
        height: 200px;
        width: 350px;
    }

    .campo img {
        width: 100px;
    }

    h2 {
        font-size: 17px;
    }
}
