:root {
  --text-color: #24485E;
  --link-color: #24485E;
  --bg-color: #ffffff;
  --font-main: Helvetica, sans-serif, "Helvetica Neue";
  --max-width: 600px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--bg-color);
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  padding: clamp(20px, 6vw, 40px);
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
}

.logo {
  width: clamp(380px, 45vw, 600px);
  height: auto;
  margin: 0 auto clamp(24px, 5vw, 40px);
  display: block;
}

.info {
  width: clamp(380px, 45vw, 600px);
  height: auto;
  margin: 0 auto clamp(24px, 5vw, 40px);
  display: block;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(13px, 2.4vw, 18px);

}

.address-lines,
.contact-lines {
  margin: 0 0 20px;
}

.contact-lines {
  margin-bottom: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .content {
    max-width: 90%;
  }
}

@media (max-width: 400px) {
  .address-lines,
  .contact-lines {
    margin-bottom: 16px;
  }
}
