body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
    overflow: hidden;
    font-family: "Varela Round", sans-serif;
    font-weight: bold;
    font-style: normal;
}

.centered-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    outline: none;
}

.character {
    width: 100dvw;
    height: 300px;
    max-width: 300px;
}

h2 {
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    justify-content: center;
}

.btn {
    font-family: "Varela Round", sans-serif;
    font-weight: semi-bold;
    font-style: normal;
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 15px;
    width: 120px;
}

.play {
    background-color: #4CAF50;
    color: white;
}

.play:hover {
    background-color: #45a049;
}

.pass {
    background-color: #f44336;
    color: white;
}

.pass:hover {
    background-color: #da251d;
}