* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}


.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.top {
  text-align: center;
}
.caption {
  font-size: 32px;
  text-transform: uppercase;
  color: #797979;
  margin-bottom: 0.3em;
}
.title {
  font-size: 48px;
  text-transform: uppercase;
}

.middle {
  display: flex;
}
.bottom {
  display: flex;
  justify-content: center;
}
.message {
  text-transform: uppercase;
  text-align: center;
  font-size: 32px;
  color: #797979;
  max-width: 600px;
  line-height: 1.4;
}

@media all and (max-width:767px) {
  .container {
    height: 100%;
  }
  .middle {
    flex-direction: column;
  }
  .caption {
    font-size: 24px;
  }
  .title {
    font-size: 32px;
  }
  .message {
    font-size: 24px;
    width: 80%;
  }
}
@media all and (max-width:440px) {
  .caption {
    font-size: 20px;
    margin-bottom: 1em;
  }
  .title {
    font-size: 26px;
  }
  .message {
    font-size: 20px;
    width: 80%;
  }
}


.clinic {
  display: flex;
  align-items: center;
}
.clinic img {
  position: relative;
  max-width: 334px;
}