body {
    background: #14161a url("/assets/img/background.svg") repeat fixed;
}

a {
    color: #626977;
    font-family: monospace;
    text-decoration: none;
}
a:hover {
    color: #282c34;
    background-color: #e06c75;
}

.wrapper {
    background-color: #14161a;
    max-width: 90%;
    width: 500px; 
    height: auto;
    border: 3px solid #282c34;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header img {
    display: block;
    margin: auto;
    padding: 10px;
    padding-top: 15px;
    max-width: 90%;
    width: 420px; 
    height: 80px;
}
header h3 {
    font-family: sans-serif;
    text-align: center;
    color: #626977;
    margin: auto;
    padding: 3px;
}

/* Navigation bar */
.nav {
    color: #626977;
    list-style: none;
    display: table;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    overflow-x: scroll;
}
.nav li {
    z-index: 10;
    display: table-cell;
}
.nav a {
    display: block;
    padding: 10px;
}

/* vim: sw=2 ts=2
