body{
    background-color: brown;
}
h2, p{
    color: rgb(225, 213, 213);
}
/*aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa*/
.ggg{
    font-size: 40px;
}
#ggf{
    font-size: 10px;
}
.menu {
    border: 2px solid rgb(209, 59, 84);
    list-style: none;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 20px;
    width: 120px;
    padding: 0px;
}
.q .P {
    display: none;
}
.q:hover .P {
    display: block;
}
.washing-machine {
    margin: 100px auto ;
    width: 200px;
    height: 250px;
    background-color: white;
    position: relative;
}
.start-btn {
    width: 30px;
    height: 30px;
    background-color: gray;
    border-radius: 100%;
    position: absolute;
    left: 140px;
    top: 20px;
}
.drum {
    width: 100px;
    height: 100px;
    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;
}
@media (max-width:768px) {
  body {
    font-sise: 14px
  }
}
@media (max-width:480px) {
  body {
    font-sise: 12px
  }
}