        body {
    font-family: Arial;
    background-color: lightgray;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
p{
    margin: 0px;
}

.container {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    justify-content: center;
    align-items: center;
    background-color: white;        
    padding: 40px 60px;            
    border-radius: 15px;            
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
    max-width: 400px;              
     text-align: center;
}

        .title
        {
            font-size: 30px;
            font-weight: bold;
        }
       
        .move-button
        {
            margin-right: 20px;
            height: 100px;
            width: 100px;
            border: 3px solid black;
            border-radius: 50px;
            cursor: pointer;
        }
        .move-icon
        {
            height: 60px;
        }
        .reset-score,.auto-play
        {
            padding:5px 10px;
            background-color: rgb(203, 199, 199);
            border: none;
            border-radius: 2px;
            margin-left: 5px;
            cursor: pointer;
        }
        .result
        {
            margin-top: 20px;
            font-size: 15px;
            color: rgb(28, 55, 28);
        }
