@font-face {
  font-family: CVSHealthSansMd;
  src: url('https://www.attainhealth.com/img-static/CVSHealthSansMedium.ttf');
  font-weight: 500;
}

* {
  box-sizing: border-box;
  font-family: CVSHealthSansMd, sans-serif;
  color: #000000;
}
body {
  background-color: #FBFBFB;
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto;
  margin: 0;
}

main {
  height: 100vh;
  overflow: hidden;
}

.container {
  max-width: 996px;
  width: 996px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.text-container {
  text-align: center;
  display: flex;
  justify-content: center;
}

.text-container h1 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 56px;
  line-height: 68px;
  font-weight: 500;
  margin: 0;
}
.text-container span {
  margin: 0;
  overflow-wrap: break-word;
}
.text-container a {
  color: #085461;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-container img {
  max-height: 86px;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
  }
  .text-container h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .image-container {
    flex-direction: column;
    gap: 40px;
  }
  .image-container .hella-health {
    max-height: 36px;
  }
  .image-container .attain-health {
    max-height: 60px;
  }
  .image-container .arrow {
    transform: rotate(90deg);
    max-height: 24px;
  }
}

@media only screen and (max-width: 481px) {
  .image-container .hella-health {
    max-width: 85%;
  }
  .image-container .attain-health {
    max-width: 80%;
  }
  .image-container .arrow {
    max-height: 16px;
  }
}