* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0%;
    animation-name: fadeIn;
    animation-duration: 2s;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer {
    position: absolute;
    bottom: 0%;
    padding: 2%;
}

a {
    text-decoration: none;
}

#center {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}