@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

html,
body {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.main__inner {
  width: 100%;
  height: 100vh;
  max-height: 600px;
  background: url(images/bg.png) #ffeed2 center no-repeat;
  background-size: 100% 100%;
  padding: 20px 42px;
}
.main__image {
  display: block;
  max-width: 243px;
  width: 100%;
  margin: 0 auto;
}
.title {
  text-align: center;
  text-transform: uppercase;
  color: #aa5757;
  font-weight: 700;
  font-size: 46px;
  margin: 18px 0;
}
.text {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 18px;
}
.count {
  text-align: center;
  font-size: 16px;
  font-weight: 700;

  color: #cb4441;
  text-shadow: 1px 1px 3px rgba(203, 68, 65, 0.4);
}
.text__sec {
  display: block;
  padding: 0 40px;
}

@media (max-width: 440px) {
  .main__inner {
    padding: 20px 30px;
  }
  .container {
    padding: 0 10px;
  }
  .title {
    font-size: 35px;
    margin: 18px 0 10px;
  }
  .text {
    margin-top: 15px;
  }
}
@media (max-width: 3850px) {
  .text {
    font-size: 11px;
  }
  .main__inner {
    padding: 20px 25px;
  }
}
@media (max-width: 350px) {
  .main__image {
    max-width: 200px;
  }
}
