body {
  color: #fff;
  background-color: #22043d;
  background-image: url('../images/bg-3.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: scroll;
  font-family: lores-9-narrow, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem;
  display: flex;
}

.image {
  width: 30rem;
}

.body {
  background-size: 100%;
}

.text-big {
  font-size: 3rem;
}

.twitch-embed {
  width: 100%;
}

.code-embed {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 3rem;
  display: grid;
}

.list-element {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.list-element_heading {
  text-align: left;
  margin-bottom: .5rem;
}

.list-element_text {
  text-align: left;
}

.div-block {
  background-color: #dd328a;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  min-height: 2rem;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .image {
    width: 50%;
  }

  .text-big {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-big {
    font-size: 1.5rem;
  }

  .list-element {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .list-element_heading {
    font-size: 1.6rem;
  }

  .div-block {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    min-height: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .container {
    padding: 2rem 5%;
  }

  .text-big {
    font-size: 1.3rem;
  }

  .list-element_heading {
    font-size: 1.5rem;
  }
}


