img#logo {
    width: 192px;
    height: 192px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.rotate {
    animation: rotate 1s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}