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;
}

.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;
}

.yeet {
    color: #3498db;
}
