* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;

  font-size: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
  min-height: 100vh;

  font-family: "PT Sans", sans-serif;
  font-style: normal;
  line-height: 1.35;
  font-weight: 400;

  background: rgb(107,55,174);
  background: -moz-linear-gradient(170deg, rgba(107,55,174,1) 0%, rgba(20,15,52,1) 100%);
  background: -webkit-linear-gradient(170deg, rgba(107,55,174,1) 0%, rgba(20,15,52,1) 100%);
  background: linear-gradient(170deg, rgba(107,55,174,1) 0%, rgba(20,15,52,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6b37ae",endColorstr="#140f34",GradientType=1);

  justify-content: center;
}

body:before {
  content: '';

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -9;
  position: absolute;
  
  background-image: url('../images/wallpaper-overlay.png');
  background-repeat: repeat;
  background-position: center top;
  background-size: 130px 130px;

  mix-blend-mode: multiply;
}

body:after {
  content: '';

  top: -2px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -8;
  position: absolute;
  
  background-image: url('../images/wallpaper.png');
  background-repeat: repeat;
  background-position: center top;
  background-size: 130px 130px;
}

header {
  color: #fff;
  padding-top: 75px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}

footer {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.vintage-top {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: -5;

  background-image: url('../images/vintage-top.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;

  mix-blend-mode: luminosity;
}

.vintage-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: -4;

  background-image: url('../images/vintage-bottom.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;

  mix-blend-mode: luminosity;
}

.logo img {
  display: block;
  margin: 0 auto;
}

.logo {
  position: relative;
  margin: -20px auto;
}

.logo:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -20px;
  right: -20px;
  top: -100px;
  height: 436px;

  background-image: url('../images/light.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;

  mix-blend-mode: overlay;
}

img {
  pointer-events: none;
}

.list-store {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 20px;
}

.button-store {
  display: block;
  border-radius: 0.375rem;
  background-color: rgba(20,15,52,0.15);
  border: 1px solid rgba(20,15,52,0.3);
}

.button-store:hover {
  background-color: rgba(20,15,52,0.2);
}

.button-store:active {
  background-color: rgba(20,15,52,0.25);
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul li {
  padding: 0;
  margin: 0;
}

.list-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}

.button-social {
  display: block;
  border-radius: 0.375rem;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.button-social:hover {
  background-color: rgba(255,255,255,0.06);
}

.button-social:active {
  background-color: rgba(255,255,255,0.08);
}

.list-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 10px;
  gap: 28px;
}

.list-link li {
  position: relative;
}

.list-link li:not(:first-child):before {
  content: '';
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: rgba(199,201,255,0.5);
  display: block;

  position: absolute;
  left: -14px;
  top: 50%;
  margin-top: -0.125rem;
}

.list-link a {
  color: rgba(199,201,255,0.5);
}

.list-link a:hover {
  color: rgba(199,201,255,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.list-link a:active {
  color: rgba(199,201,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-dark {
  color: rgba(199,201,255,0.4);
  text-align: center;
}

p {
  padding: 0;
  margin: 0;
}

.section-shadow {
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;

  background-image: url('../images/section-shadow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;

  margin-bottom: 30px;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Lilita One", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

h1, .h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
}

h2, .h2 {
  color: rgba(235,234,255,0.5);
  font-size: 1rem;
}

h1 + h2, .h1 + .h2 {
  margin-top: 0.5rem;
}

input {
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
}

button, .button {
  display: inline-block;
  font-family: "Lilita One", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
  font-size: 1rem;
  padding: 0.8125rem 1.25rem;
  border-radius: 0.5rem;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

button:hover, .button:hover {
  background-color: rgba(255,255,255,0.125);
}

button:active, .button:active {
  background-color: rgba(255,255,255,0.15);
}

.section-shadow .button {
  margin-top: 1.5rem;
}

.section-shadow button {
  margin-top: 1rem;
}

input {
  margin: 0 auto;
  display: block;
  max-width: 380px;
  border: 1px solid rgba(235,239,255,0.25);
  background-color: transparent;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.625rem;
  color: #fff;
  width: 100%;
}

input:hover {
  border-color: rgba(235,239,255,0.4);
}

input:focus {
  border-color: rgba(255,255,255,1);
}

input::placeholder {
  color: rgba(199,201,255,0.4);
}

.section-shadow form {
  margin: 0;
  padding: 0;
  margin-top: 1.25rem;
}

.hidden {
  display: none !important;
}

#section-form.hidden {
  display: block !important;
  visibility: hidden;
}

.section-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.section-window button {
  margin-top: 25px;
}

.loader {
  font-family: "Lilita One", sans-serif;
  text-transform: uppercase;
  color: rgba(235,234,255,0.5);
  font-size: 1.5rem;

  animation-name: loading;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes loading {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 86%;
  }

  body:after {
    top: -4px;
    background-size: 120px 120px;
  }

  .button-social img {
    width: 100%;
    height: auto;
  }

  .button-social {
    width: 44px;
  }

  .logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
  }

  .logo:before {
    top: -90px;
    height: 400px;
  }

  .button-store img {
    width: 100%;
    height: auto;
  }

  .list-store li {
    width: 50%;
    max-width: 150px;
  }

  form button,
  form input {
    width: 100%;
    max-width: 100%;
  }

  .section-shadow form {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  header {
    padding-top: 60px;
  }
}