body{
    background-color: rgb(26, 26, 26);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.title{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    color: rgb(207, 167, 5);
}
h2{
    text-align: center;
    color: aqua;

}
.icon{
    height: 80px;
    vertical-align: middle;

    
}
.move-button{
    border: 3px solid white;
    background-color: transparent;
    padding: 20px;
    border-radius: 50%;
    margin-right: 15px;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s ease;

}
.move-button:hover{
    transition: scale(1.15) ;
    border-color: #00ffcc;
}

.align-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.result{
    font-size: 28px;
    font-weight: bold;
    margin-top: 45px;
    text-align: center;
    color: #00ffcc;
    

}
.moves{
    text-align: center;
    margin-top: 30px;
}
.score{
    margin-top: 20px;
    background-color: rgb(70, 70, 70);
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius:10px ;
}
.reset-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.reset-button{
    border: 0;
    font-size: 15px;
    padding: 8px 10px;
    background-color: rgb(239, 102, 102);
    color: white;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}
.reset-button:hover{
    background-color: red;
}

