/* pale-yellow: #c4b033 */


/* yellow:  #f7df1d */


/* brown: #3f2f11 */

* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    background-color: #f7df1d;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

div.content {
    text-align: center;
    color: #c4b033;
    font-family: 'Fira Mono', monospace;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

h1 {
    font-size: 52px;
}

h3 {
    margin-bottom: 20px;
}

h3 {
    font-weight: 300;
    font-size: 14px;
}

ul {
    list-style-type: none;
    margin-top: 50px;
}

ul li {
    display: inline-block;
    margin: 0 20px;
}

ul li a {
    font-size: 64px;
}

i {
    color: #c4b033;
    transition: color 0.2s ease;
}

i:hover {
    color: #3f2f11;
}

div.copyright {
    margin-top: 100px;
    font-size: 12px;
}

span {
    font-family: sans-serif;
}