

table, td {
    border: 5px rgb(189, 249, 186) solid;
    font-size: 20px;
}
td {
    width: 100px; height: 100px;
   text-align: center;
}

td:hover {
    background-color: rgb(68, 231, 119);
    color: blue;
}
input:focus {
    background: rgb(31, 160, 203);
    border-color: yellow solid;
}
.q .P {
    display: none;
}
.q:hover .P {
    display: block;
}
.washing-machine {
    margin: 100px auto ;
    width: 200px;
    height: 250px;
     background-color: rgb(32, 120, 152);
    position: relative;
}

.drum {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: absolute;
    left: 50px;
    top: 80px;
}
.drum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}
@keyframes spin{
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}
.drum:hover {
animation: spin 1s linear infinite;
}