main {
    display: flex;
    height: 100vh;
    font-family: 'Oswald', sans-serif;
    background: #e6f3ff;
}

main > * {
    margin: auto;
}

h1 {
    font-size: 10em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    display: flex;
}

li {
    display: inline-block;
    margin: auto;
    font-size: 3em;
}

a {
    color: cornflowerblue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: indigo;
}