html, body {
  background: url(/img/background.png) #1e1e1e;
  color: #fff;
  font-family: "Fira Code", monospace;
  height: 100%;
  margin: 0;
  padding: 0;
  user-select: none;
  width: 100%;
}

body {
  align-items: safe center;
  display: flex;
  justify-content: safe center;
}

.container {
  background: #262626;
  box-sizing: border-box;
  margin: 50px auto;
  max-width: 1280px;
  padding: 30px;
  width: 90%;
}

@media only screen and (min-width: 601px) {
  .container {
    width: 85%;
  }
}

@media only screen and (min-width: 993px) {
  .container {
    width: 70%;
  }
}

p, li {
  line-height: 28px;
}

h1, h2, h3 {
  font-weight: normal;
  position: relative;
}

h2 {
  margin-top: 50px;
  opacity: 0.5;
}

a, a:hover, a:focus, a:visited {
  border-bottom: 0.5px solid rgba(0, 0, 0 ,0);
  color: #add8e6;
  outline: none;
  text-decoration: none;
}

a:hover {
  border-color: #add8e6;
}

ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding-left: 2ch;
  text-indent: -1ch;
}

li:before {
  content: "->";
  padding-right: 1ch;
}
