body {
    background: #252525;
    color: rgb(255,255,255);
    font-family: 'Arial', sans-serif;
    text-align: center;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.moves-buttons {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    padding: 5%;
}
.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.move-button {
    background-color: transparent;
    border: 3px solid rgb(255,255,255);
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.move-button:hover {
    transform: scale(1.05);
}

.move-icon {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.result {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    min-height: 30px;
}

.moves {
    font-size: 18px;
    margin: 15px 0;
    min-height: 25px;
}

.score {
    font-size: 18px;
    margin: 15px 0;
}

.reset-button {
    background-color: #444;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.reset-button:hover {
    background-color: #555;
}