body {
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    flex-direction: column;
}

.game {
    border: 1px solid #d2d2d2;
    padding: 20px;
    background-color: #74CBD4;
    border-radius: 5px;
}

.status {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.status img {
    max-width: calc(100vw - 10rem);
}

.choices {
    display: flex;
    justify-content: space-around;
}

.choices img {
    width: 100px;
    cursor: pointer;
}

.selected {
    opacity: 0.5;
}

.footer {
    position: absolute;
    bottom: 0px;
}

.footer a {
    text-decoration: none;
    color: black;
}