html {
    height: 100vh;
}

body {
    margin: 0;
}

.game {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

.title {
    font-size: 36px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0px;
    color: rgb(54, 46, 40);
    margin-bottom: 30px;
}

.choices {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

button {
    width: 200px;
    height: 200px;
    border-radius: 70px;
    border-width: 0px;
    background-color: white;
    margin-bottom: 5px;
}

button:hover {
    box-shadow: 7px 7px 2px black;
}

img {
    max-width: 180px;
    max-height: 180px;
    border-radius: 30px;
}

.messageBox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.message {
    background-color: rgb(233, 230, 230);
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.playAgain {
    display: none;
    margin-top: 20px;
    width: 210px;
    height: 100px;
    border-radius: 30px;
    background-color: rgb(248, 136, 32);
    font-weight: bold;
    font-size: large;
}