.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.container {
  max-width: 640px;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 50px;
  display: flex;
  box-shadow: 0 20px 15px -7px rgba(0, 0, 0, .2);
}

.section {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.heading {
  color: #000;
  font-family: Roboto Condensed, sans-serif;
  font-size: 3rem;
}

.heading-2 {
  color: #000;
  font-family: Roboto Condensed, sans-serif;
  font-size: 2rem;
}

.body {
  background-color: #ddd;
}

.primary-button {
  background-color: #e91719;
  border-radius: 10px;
  padding: 20px 40px;
  font-family: Roboto Condensed, sans-serif;
  font-size: 2rem;
  transition: all .2s;
}

.primary-button:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 7px -7px rgba(0, 0, 0, .2);
}

.button-array {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.paragraph {
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
}

.imprint {
  opacity: .56;
  text-align: center;
  font-family: Roboto Condensed, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 1.7rem;
    line-height: 1.9rem;
  }

  .primary-button {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding: 20px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading {
    text-align: center;
    font-size: 2.6rem;
    line-height: 3.1rem;
  }

  .heading-2 {
    font-size: 1.2rem;
    line-height: 1rem;
  }

  .primary-button {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .list {
    margin-bottom: 10px;
  }
}


