header img {
    width: 10%;
}
.logo-container img {
    animation: rotate 5s linear infinite;
}
.logo-container {
    text-align: right;
   
}
@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}
