@import url(/assets/css/layout/landing.css);

h1 {
    text-align: center;
}

a {
    margin-top: 1em;
    font-size: 1.5em;
}

.img {
    width: 100dvw;
    display: grid;
    place-items: center;

    &>* {
        grid-area: 1/1;
        width: 80%;
        max-width: 15cm;
        min-width: 200px;
    }

}

.show {
    opacity: 0;

    animation: show 1s 1.5s forwards;
}

.show-late {
    opacity: 0;
    position: relative;
    top: 3em;

    animation: show 1s 2.5s forwards;
}

.hide {
    opacity: 1;

    animation: show .5s 2s forwards reverse;
}

@keyframes show {
    from {
        opacity: 0;
        top: 3em;
    }

    to {
        opacity: 1;
        top: 0;
    }
}