:root {
  --overlay-color: #0a0a0a;
  --overlay-opacity: 0.5;
  --logo-width: min(850px, 78vw);
}

* {
  box-sizing: border-box;
}

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

body {
  background: #0a0a0a;
  color: #ffffff;
}

.brand-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.brand-landing__background,
.brand-landing__overlay {
  position: fixed;
  inset: 0;
}

.brand-landing__background {
  z-index: 0;
  background-image: url("assets/background.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand-landing__overlay {
  z-index: 1;
  background: var(--overlay-color);
  opacity: var(--overlay-opacity);
}

.brand-landing__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.brand-landing__logo {
  display: block;
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 700px) {
  :root {
    --logo-width: min(560px, 88vw);
  }

  .brand-landing__content {
    padding: 18px;
  }
}
