
body {
    padding: 0;
    margin: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: lavender;
}

h1.fancy-font {
    font-weight: 1000;
    font-size: 5.5em;
}

p.fancy-font {
    font-size: 2em;
}

p {
    text-align: center;
}

a:visited {
    color: black;
}

.fancy-font {
    font-family: "Parisienne", cursive;
}

.center {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.center > * {
    align-self: center;
}

.emoji {
    font-family: 'Courier New', Courier, monospace;
}

#dino {
    width: 8em;
    height: 8em;
}

@media screen and (max-width: 65em) {
    h1.fancy-font {
        font-size: 2em;
    }
}
