body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: #000;
}

a {
    display: flex;
    max-width: 100%;
    max-height: 100%;
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    object-fit: none;
    animation: appears 5s ease-in-out 1s both;
}

@keyframes appears {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}
