﻿
    .container

{
     /*border: 2px solid red;*/
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*   background: orange; */
    max-width: 300px;
    margin: 2rem auto;
}

.dislicark {
    animation: turn 7s infinite;
    animation-timing-function: linear;
    height: 75px;
}

@keyframes turn {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
