body {
    text-align: center;
    font-family: 'Inconsolata', monospace;
    background-color: #212121;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

h1, h2 {
    font-weight: 500;
}


a {
    color: #ffffff;
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
}

.kon {
    font-family: 'proxima-nova', sans-serif;
}

.social-links {
    /* CSS puts a default padding on lists, so get rid of it */
    padding-left: 0;
}

.social-links li {
    display: inline;
    padding: 0 .5em;
    font-size: 1.125em;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}


/* https://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/ */
.aligner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.aligner-item {
  max-width: 80%;
}

.orange {
    color: #e67e22;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a.linkedin:hover, a.linkedin:focus, a.linkedin:active {
    color: #0077b5;
}

a.telegram:hover, a.telegram:focus, a.telegram:active {
    color: #0088cc;
}

a.twitter:hover, a.twitter:focus, a.twitter:active {
    color: #1da1f2;
}

a.github:hover, a.github:focus, a.github:active {
    color: #999999;
}

a.ko-fi:hover, a.ko-fi:focus, a.ko-fi:active {
    color: #f16061;
}

#counter {
    position: absolute;
    bottom: 5vh;
    right: 5vh;
}

#snake {
	-webkit-box-shadow:0 0 20px #ffffff;
	-moz-box-shadow: 0 0 20px #ffffff;
	box-shadow:0 0 20px #ffffff;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

