* {
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
body {
  width: 100%;
  min-height: 100vh;
  color: #fff;
  background: url("/images/bg.png") no-repeat;
  background-size: cover;
  background-position: left center;
  margin: 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
h2,
h3 {
  width: 100%;
  font-weight: 500;
  margin-bottom: 20px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
.wrap {
  max-width: 1100px;
  padding: 0 50px;
  margin: auto;
}
.hidden_desk {
  display: none;
}
p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
span {
  font-weight: 100;
  font-size: 18px;
  line-height: 1.5;
}
a {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  width: 100%;
  display: block;
  text-decoration: none;
  padding-top: 20px;
}
a:hover {
  text-decoration: underline;
  color: #fff;
}
a:visited,
a:focus,
a:active {
  text-decoration: none;
  color: #fff;
}
footer {
  position: relative;
  width: 100%;
  min-height: 280px;
  margin-top: 10px;
  background: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
}
@media (max-width: 1100px) {
  h1 {
    font-size: 75px;
  }
  p {
    font-size: 16px;
  }
  span {
    font-size: 16px;
  }
  h1 {
    margin-bottom: 25vh;
  }
  .wrap {
    padding: 25vh 30px 50px 30px;
    background: linear-gradient(0deg, #000 0%, rgba(16, 6, 57, 0.6) 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
  }
  footer {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .hidden_desk {
    display: block;
  }
}
/*# sourceMappingURL=main.css.map */