@font-face {
  font-family: "Untitled Sans";
  src: url("../fonts/untitled-sans-web-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #333;
  background-color: #fff;
  min-height: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.image {
  width: 250px;
  margin-left: 0;
  margin-right: auto;
  display: block;
}

.heading {
  color: #000;
  text-align: left;
  letter-spacing: -0.03em;
  max-width: 400px;
  font-family: "Untitled Sans", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  display: inline-block;
}

.gray-text {
  color: #86868b;
  padding-top: 12px;
  display: block;
}

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

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

  .image {
    width: 150px;
  }

  .heading {
    padding-left: 25px;
    padding-right: 40px;
    font-size: 14px;
    line-height: 23px;
  }
}
