* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #eee;

  font-family: "Luckiest Guy";
  font-style: normal;
  font-weight: 400;
  font-size: min(5em, 5vw);

  color: #ffffff;

  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.64);
}

.banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows:
    50%
    10%
    auto /* socials */
    7%; /* footer */
  grid-template-areas:
    "logo  text"
    "meta  ."
    "social ."
    "footer footer";
  width: 100vw;
  height: 100vh;
  background: url("Background.webp") center/cover no-repeat;
  overflow: hidden;
}

.logo {
  grid-area: logo;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5vh;
}
.text {
  grid-area: text;
  display: flex;
  justify-content: start;
  align-items: center;
}
.meta {
  grid-area: meta;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.social {
  grid-area: social;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 1rem;
  margin-top: 2rem;
}
.footer {
  grid-area: footer;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}

.logo img {
  max-width: 100%;
  max-height: 100%;
}
.meta img {
  max-height: 10vh;
  max-width: 70vw;
}
.social img {
  max-height: 10vh;
  max-width: 13vw;
}

a {
  font-size: 0;
}

.logo-ovid {
  max-height: min(30px, 4vh);
  max-width: 100%;
}

.logo-mooneaters {
  max-height: min(50px, 9vh);
  max-width: 100%;
}

.logo-pixelglaze {
  max-height: min(30px, 4vh);
  max-width: 100%;
}

.footer {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.meta img,
.social img,
.footer img:hover {
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.meta img:hover,
.social img:hover,
.footer img:hover {
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .banner {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  .banner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows:
      30%
      10%
      auto /* socials */
      7%; /* footer */
    grid-template-areas:
      "logo  text"
      "meta  ."
      "social ."
      "footer footer";
    width: 100vw;
    height: 100vh;
    background: url("Background-Mobile.webp") center/cover no-repeat;
    overflow: hidden;
  }

  .logo {
    padding-top: 2vh;
  }
  .meta {
    margin-top: 0.75rem;
  }
  .social {
    margin-top: 1rem;
  }
}

@media (max-width: 1200px) {
  .text {
    display: none;
  }
}

@media (max-width: 600px) and (orientation: portrait) {
  .logo-ovid {
    max-height: 20px;
  }

  .logo-mooneaters {
    max-height: 40px;
  }

  .logo-pixelglaze {
    max-height: 20px;
  }
}
