html {
  min-height: 100%;
  position: relative;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100%;
  background: #202020;
}

header {
  background: #202020;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  margin-top: 10px;
}

a {
  color: white;
}

.logo {
  color: white;
  font-weight: 500;
  letter-spacing: 10px;
  flex: 1;
}

.bg-img-wrapper {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.content-wrapper {
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.icon {
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.title {
  font-size: 2em;
  letter-spacing: 1px;
}

.subtitle {
  margin-top: 2px;
}

.divider {
  width: 1px;
  height: 30px;
  background: white;
  margin: 0 20px 0;
  opacity: 0.3;
}

.links-wrapper {
  margin-top: 35px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.octicon-mark-github {
  fill: white;
}

@media only screen and (max-width: 768px) {
  .icon {
    width: 100px;
    height: 100px;
    margin: 0 0 20px 0;
  }

  .title-wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }

  .title {
    font-size: 1.8em;
    letter-spacing: 0;
  }

  .subtitle {
    text-align: center;
  }
}

@media only screen and (max-height: 600px) {
  .bg-img {
    height: 600px;
  }

  .content-wrapper {
    justify-content: start;
  }

  .content {
    margin: 60px;
  }
}
