body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: url(images/background.jpg) no-repeat center,
    radial-gradient(circle, #0d1321 0, #090f1c 60%);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  font-size: 16px;
  height: 100%;
  max-width: 1920px;
  min-width: 340px;
  margin: 0 auto;
}
.header {
  margin: 20px 30px 30px 30px;
  padding: 10px 0;
  position: sticky;
  top: -1px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(7px);
}
.header.is-pinned {
  background: rgba(0, 0, 0, 0.5);
}
.page-start {
  width: 100%;
  height: 1px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 30px;
}
.logo .title {
  font-size: 30px;
  font-weight: 500;
  margin-left: 10px;
}
.logo .subtitle {
  font-size: 23px;
  font-weight: 300;
  margin-left: 10px;
  margin-top: 5px;
}
.header .button {
  border: 3px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(to right, #ff9699, #f37aff, #67eaff, #7b98ff, #905bff);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 5px 30px;
  border-radius: 20px;
  white-space: nowrap;
  height: 100%;
  color: #fff;
  text-decoration: none;
}
.container {
  margin: 100px 10%;
}
.blocks {
  margin-top: 140px;
  display: grid;
  column-gap: 140px;
  row-gap: 100px;
  grid-auto-columns: minmax(auto, 100%);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
h1 {
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 120%;
  text-transform: uppercase;
}
.block {
  font-weight: 300;
  font-size: 20px;
}
.block img {
  margin-bottom: 30px;
  height: 100px;
}
.hero .hero1 {
  width: 30%;
  margin-bottom: 10px;
  min-width: 150px;
}
.hero .hero2 {
  width: 70%;
  margin-bottom: 30px;
  min-width: 320px;
}
.hero .hero3 {
  width: 45%;
  min-width: 320px;
}
@media screen and (max-width: 720px) {
  .header {
    margin: 0 10px;
  }
  .logo .subtitle {
    display: none;
  }
  .blocks {
    margin-top: 100px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  h1 {
    font-size: 22px;
  }
  .block {
    font-size: 18px;
  }
}
@media screen and (max-width: 420px) {
  .container {
    margin: 50px 20px;
  }
}
