body,
html {
  padding: 0;
  margin: 0;
  min-width: 350px;
}

body {
  font-family: "Tilda Sans";
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  flex-flow: column;
  background: #0f0136;
  position: relative;
  min-height: 100vh;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 46px 0;
}

.wrapper {
  width: calc(100% - 40px);
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

main {
  flex-grow: 1;
  padding: 40px 0;
}

p {
  margin: 0;
  margin-bottom: 20px;
  max-width: 420px;
}

p span {
  opacity: 0.4;
}

@media screen and (max-width: 800px) {
  h1 {
    font-size: 24px;
  }
}
