body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #282c34;
}
    

.card {
    width: 500px;
    background: #282c34;
    border-radius: 10px;
    padding: 20px;
}

.card .wrap-img {
    overflow: hidden;
}

.card img {
    width: 70%;
    margin: 10px auto;
    display: block;
}

/* .image-animation {
    animation-name: rotateAir;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-play-state: paused;
} 

@keyframes rotateAir {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}  */

.buttons {
    display: flex;
    justify-content: space-around;
}

button {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    width: 50px;
    height: 50px;
    line-height: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
}

.on {
    background-color: rgb(0, 246, 176);
    color: #000;
    border: 1px solid #000;
}

.off {
    background-color: rgb(243, 112, 127);
    color: #000;
    border: 1px solid #000;
}

