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

html {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  text-align: center;
  color: #333;
}
html,
body {
  height: 100%;
  max-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

a {
  color: #000;
  font-weight: 600;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (min-width: 768px) {
    justify-content: center;
  }
}

.logo {
  max-width: min(300px, 50vw);
  width: 100%;
  margin-bottom: 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10vh;

  min-height: 50vh;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 0.4rem;
}

.slogan {
  opacity: 0.75;
  font-weight: 500;
  font-size: 1.1rem;
}

.contact-link {
  margin-top: 0.8rem;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  opacity: 0.1;
}

.disclaimer {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.75;
}

.address {
  margin-top: 1rem;
  opacity: 1;
  line-height: 1.5;
}
