*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #35654D;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

img{
    width: 150px;
    margin: 1rem;
}

.info-section{
    text-align: center;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 150px;
}

.table{
    width: 100vw;
    display: flex;
    justify-content: space-around;
}

.computer, .player {
    min-width: 500px;
    min-height: 300px;
    width: fit-content;
    height: fit-content;
    text-align: center;
    background-color: lightgrey;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.buttons button{
    width: 100px;
    height: 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}