/* Vars */

:root {
    --light: #dedede;
    --dark: #111111;
    --mid1: #3b3b3b;
    --mid2: #666666;
    --lighter: #ffffff;
}

html {
    background-color: var(--dark);
}

* {
    color: var(--light);
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    border-radius: 0;
    font-family: 'Source Code Pro', monospace;
}

a {
  font-family: 'Source Code Pro', monospace;
}

h1 {
    font-size: 48px;
    margin: 10px;
    font-weight: 300;
}

p {
    font-size: 15px;
    margin: 10px;
}


hr {
    width: 80%;
    margin: auto;
    border-top: 1px solid var(--light);
}

/* Buttons */

.button {
    background-color: transparent;
    border: 1px solid var(--light);
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    justify-content: center;
}

.button:hover {
    box-shadow: 3px 3px var(--mid2);
}
.button:active {
    background-color: var(--light);
    color: var(--dark);
}
.button:focus {
    outline: none;
}

.halfCenterLine {
    border: none;
    border-bottom: 1px solid var(--light);
    width: 50%;
}

html, body {
    height: 100%;
}

main {
    min-height: calc(100% - 100px);
    margin: 0;
}

footer {
    height: 100px;
    box-sizing: border-box;
    padding: 15px;
    width: 100%;
}

.triSplit {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.footleft, .footmiddle, .footright {
    flex: 1;
}

.triSplit .right {
    vertical-align: center;
}