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

@font-face {
  font-family: "season sans";
  src: url("./fonts/SeasonSansTRIAL-Regular.ttf");
}

@font-face {
  font-family: "season sans";
  src: url("./fonts/SeasonSansTRIAL-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "season mix";
  src: url("./fonts/SeasonMixTRIAL-Regular.ttf");
}

:root {
  font-size: clamp(0.8rem, 1.1vw, 3rem);
  --padding: 2rem;
}

@media (max-width: 600px) {
  :root {
    --padding: 1.25rem;
  }
}

body {
  font-family: "season sans";
  color: white;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.background {
  position: fixed;
  width: 100%;
  height: 100dvh;
  display: flex;
  z-index: -1;
}

@media (max-width: 600px) {
  .background {
    flex-direction: column;
  }
  .background div:nth-child(2) {
    margin-top: -1px;
  }
}

.background div {
  flex: 0 0 50%;
}

.background img {
  width: 100%;
  height: 100%;
}

.logo {
  position: fixed;
  top: var(--padding);
  left: var(--padding);
  width: 10rem;
  z-index: 2;
}

@media (max-width: 600px) {
  .logo {
    top: 1.5rem;
    left: 1.5rem;
    width: 8rem;
  }
}

.logos {
  position: fixed;
  top: var(--padding);
  right: var(--padding);
}

.logos img {
  height: 3.5rem;
  display: inline-block;
  margin-left: 1rem;
}

@media (max-width: 600px) {
  .logos img {
    height: 3rem;
  }
}

.tagline {
  position: fixed;
  width: 100%;
  top: var(--padding);
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 900px) {
  .tagline {
    top: 15rem;
  }
}

@media (max-width: 600px) {
  .tagline {
    top: 28%;
  }
}

.image {
  position: fixed;
  width: 100%;
  height: 100dvh;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding);
}
.image img {
  width: 55rem;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .image {
    padding: 1.5rem;
  }
  .image img {
    width: 100%;
  }
}

.copy {
  position: fixed;
  bottom: var(--padding);
  left: var(--padding);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.65rem;
  line-height: 1.1;
}

.info {
  position: fixed;
  font-size: 4rem;
  line-height: 0.8;
  text-transform: uppercase;
  text-align: center;
  bottom: var(--padding);
  width: 100%;
}

@media (max-width: 900px) {
  .info {
    font-size: 3rem;
    bottom: 10%;
    line-height: 0.9;
  }
}

@media (max-width: 600px) {
  .info {
    font-size: 1.75rem;
    bottom: 23%;
  }
}

.info div:nth-child(2) {
  font-family: "season mix";
}

.social {
  position: fixed;
  bottom: var(--padding);
  right: var(--padding);
  display: flex;
}

.social img {
  display: inline-block;
  height: 1.5em;
  width: auto;
  margin-left: 1rem;
}
