 * {
            font-size: 1.2rem;
            font-family: Arial;
            font-weight: bold;
        }
        body{
            height: 100vh;
            display: flex;
            justify-content: center;
            background-color: rgb(25, 25, 25);
            color: white;
        }

        .title{
            font-size: 1.2rem;
        }

        .game-button{
            height: 80px;
            width: 80px;
            border-radius: 50%;
            background: transparent;
            border: 3px solid white;
            margin-right: 10px;
            cursor: pointer;
        }

        .move-image{
            height: 50px;
            width: 50px;
            object-fit: cover;
        }

        .result, .score{
            font-size: 1rem;
        }

        .score{
            margin-top: 50px;
        }

        .reset-button{
            font-size: 0.8rem;
            border: none;
            background-color: white;
            padding: 4px 6px;
        }