.section {
  background-color: #416aff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.paragraph {
  color: #fff;
  text-align: center;
  margin-left: 265px;
  margin-right: 265px;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

.paragraph-2 {
  color: #fff;
  text-align: center;
  margin: 12px 263px;
}

.paragraph-2-copy {
  color: #000;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  margin: 12px 0;
  padding: 25px 79px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .paragraph, .paragraph-2 {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .paragraph {
    text-align: center;
    margin-left: 22px;
    margin-right: 22px;
    line-height: 44px;
  }

  .paragraph-2 {
    height: 100px;
    margin-left: 38px;
    margin-right: 38px;
    line-height: 25px;
  }

  .paragraph-2-copy {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
}


