*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #ffffff;
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6)),
    url("../images/background_image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.site-header {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.site-logo {
  height: 64px;
  width: auto;
  display: block;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.logo-container {
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

/* .center-logo { */
  /* height: 80px; */
  /* width: auto; */
/* } */

.heading {
  font-size: clamp(4rem, 8vw, 6rem);
  margin: 0 0 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tagline {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.7;
}
