* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 25px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: 2px;
  color: #000;
}

.content > * {
  padding: 10px 15px;
}

.content p .small {
  font-size: 15px;
}

.content a {
  color: inherit;
  text-decoration: none;
}

.content a:focus {
  color: #fff;
}

.content a.dark-bg:focus {
  color: #adadad;
}

@media (max-width: 749px) {
  .content p {
    font-size: 16px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
  }

  .content p .small {
    font-size: 12px;
  }
}

@media (max-width: 1170px) {
  .content {
    flex-direction: column;
  }

  .content p > * {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
