body {
    margin: 0;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;

    background-color: white;
}

.img {
    margin: 0;
    border: 0;
    padding: 5px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;

}

img {
    height: 75%;
    width: auto;
    border-width: 10px;
    border-style: solid;
    border-color: rgb(187, 255, 85);
    transform-origin: center;
    animation: rotate 8.88888888s infinite linear;
}

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

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

footer {
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 5px;
    border: 0;
}