* {
    background-color: rgb(48, 155, 155);
}

body {
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 0;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#intro {
    height: 100dvh;
    display: grid;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-size: 2.5rem;
    /* animation: slide-in 500ms; */
}

/* #greeting {
    height: 300%;
    animation: slide-in 500ms;
} */

#greeting {
    font-size: 10rem;
}

#welcome ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    /* width: 556px; */
    margin: 0;
    padding: 0;
}

#welcome li {
    display: inline-block;
}
#welcome a:any-link {
    text-decoration: none;
    color: inherit;
}
#welcome a:hover {
    border-bottom: 2px solid;
}

@keyframes slide-in {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}