@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

*, *:before, *:after {
    font-family: 'Poppins', sans-serif;
}

ul {
    position: absolute;
    top: 50%;
    left: 50%;
    list-style: none;
    margin: 0;
    padding: 0;

    animation-name: move-in;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-duration: 2s;
}

ul li a {
    text-decoration: none;
    color: inherit;
}
ul li a:hover {
    text-decoration: underline;
}

@keyframes move-in {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}