*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #707070;
  background-color: #ffffff;
  padding: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2 1 auto;
}

.logo__icon {
  width: 100%;
  max-width: 27rem;
  height: auto;
}

.end-of-survey {
  text-align: center;
  flex: 5 1 auto;
}

.end-of-survey__check-mark-icon {
  width: 7.5rem;
  height: 7.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid #01C5A5;
  color: #01C5A5;
  font-size: 5rem;
  line-height: normal;
  flex: 0 0 auto;
  margin-bottom: 0.5rem;
}

.end-of-survey__header {
  font-size: calc(1.375rem + 1.375vw);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.end-of-survey__message {
  font-size: 1.25rem;
  font-weight: 300;
}

.end-of-survey__company-info {
  font-size: 0.875rem;
  margin-top: 10vh;
}

.copyright {
  border-top: 1px solid rgba(108, 117, 125, 0.25);
  text-align: center;
  font-size: 0.875rem;
  padding-top: 1rem;
  flex: 0 0 auto;
}