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

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  background-color: #020408;
  padding: 12px 24px;
}

.logo {
  display: block;
  height: 192px;
  width: auto;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: url("./web_background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 128px;
}

.hero-text {
  color: #ffffff;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  max-width: 14ch;
  margin-right: 48px;
  text-align: right;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.site-footer {
  background-color: #020408;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px 24px;
  min-height: 64px;
}

.copyright {
  color: #ffffff;
  font-size: 0.85rem;
}
