html,
body {
  margin: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: Manrope;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

a {
  text-decoration: none;
}

main {
  background-image: url("../assets/images/bgImg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 48px 24px 32px 24px;
}

.informationBlock > h2 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
}

.informationBlock > p {
  margin-top: 24px;
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  text-align: center;
}

.imageBlock {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 650px) {
  .container {
    padding: 48px 16px;
  }

  .informationBlock > h2 {
    font-size: 32px;
    line-height: 30px;
  }

  .informationBlock > p {
    font-size: 14px;
    line-height: 24px;
  }

  .imageBlock {
    margin-top: 24px;
  }

  .imageBlock > img {
    width: 280px;
  }
}
