@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&display=swap");
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "Hind", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #f48a00;
}

.outer {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inner {
  margin: 30px;
  padding: 100px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #9f9d9c;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 40px;
  }
}
.inner img {
  width: 100%;
  height: auto;
}
.inner p {
  margin: 0;
}
.inner__content {
  margin-top: 50px;
}