@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background-color: rgb(56, 144, 48);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    margin-top: 200px;
}

.board {
    display: flex;
    flex-wrap: no-wrap;
    align-items: center;
    justify-content: center;
}

.player {
    width: 300px;
    height: 300px;
    margin-left: 2rem;
    margin-right: 2rem;
}

.playerName {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.points {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 300px;
}

.drawBtn, .newGame {
    width: 200px;
    height: 50px;
    border-radius: 3px;
    margin-top: 50px;
}

.newGame {
    display: none;
}

.winner {
    margin-top: 50px;
}

.visible{
    opacity: 1;
}

.invisible{
    opacity: 0;
}

img {
    width: 100%;
    box-shadow: 10px 4px 5px rgba(0, 0, 0, .2);
    border-radius: 18px;
    border: none;
    background-color: transparent;
}