
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
    font-size: 14px;

}

img{
    height: 80vh;
    width: 80vh;
}









i{
    animation: rotate 2s linear infinite;
}


@keyframes rotate{
    0% {
        transform: rotate(0);
    }
    
    100% {
        transform: rotate(1turn);
    }
}

@media(max-width: 700px){
    
    img{
        width: 100%;
    }
}