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

:root {
  --orange: #f84900;
  --green: #8fff1c;
}

body {
  background: #121212;
  color: #fff;
  margin: 0;
  padding: 0 5vw;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  align-items: center;
  font-family: "Exo", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 1s ease all;
}

.feat-img {
  position: fixed;
  right: 5vw;
  /* left: 5vw; */
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.feat-img img {
  display: block;
  width: 42.5vw;
  max-height: 60vh;
  object-fit: contain;
}

.feat-img h2 {
  font-size: 2.5rem;
}

.feat-img h3 {
  font-size: 2rem;
}

.feat-img h4 {
  font-size: 1.5rem;
}

.feat-img:only-child {
  width: 90vw;
  flex-direction: row;
  align-items: center;
}

.links {
  list-style: none;
  grid-column: 2;
  padding: 2rem 0;
  display: grid;
  gap: 2rem;
}

.links a {
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 5px;
}

.links a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
  transition: inherit;
  z-index: 2;
}

.links img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  line-height: 0;
  transition: inherit;
  position: relative;
  z-index: 1;
}

.links h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 2.5rem;
  z-index: 3;
  padding: 1rem;
  transition: inherit;
}

.links a:hover {
  border-color: var(--orange);
}

.links a:hover:before {
  opacity: 0.4;
}

.links a:hover img {
  transform: scale(1.05);
}

.links a:hover h4 {
  color: var(--green);
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.social a {
  color: var(--green);
  transition-duration: 0.5s;
}

.social a:hover {
  color: var(--orange);
}

@media screen and (max-width: 1080px) {
  body {
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: auto;
  }

  .feat-img {
    position: static;
    transform: none;
    /* grid-column: 1/-1;
    flex-direction: row;
    align-items: center; */
    /* display: contents; */
  }

  .feat-img img {
    width: 100%;
  }

  .links {
    display: contents;
  }

  .links h4 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 720px) {
  body {
    grid-template-columns: 1fr;
    gap: 10vh;
  }

  .feat-img {
    flex-direction: column;
  }

  .feat-img h2 {
    font-size: 2rem;
  }
}

.intro {
  grid-column: 1;
  text-align: center;
  font-size: 1.25rem;
}

.intro p {
  font-weight: 500;
  margin-bottom: 1rem;
  text-wrap: balance;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.intro p a {
  text-decoration: underline;
  transition: 0.3s ease all;
}

.intro p a:hover {
  text-decoration-color: transparent;
}

.intro .social {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.intro h1 img {
  width: 90%;
  margin-bottom: 2rem;
}

.legal {
  padding-top: 5vh;
  padding-bottom: 5vh;
  grid-column: 1/-1;
  --banner-grid-gutter: 1rem;
}

.legal .logo {
  width: 10rem;
}

.legal h1,
.legal h2,
.legal h3,
.legal h4,
.legal h5,
.legal h6 {
  margin: 1em 0;
}

.legal p {
  margin-bottom: 1em;
}

.legal table {
  color: #fff;
}

footer {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.75rem;
}

footer ul {
  list-style: none;
  display: flex;
}

footer ul li:before {
  content: "|";
  letter-spacing: -1rem;
  padding: 0 0.5rem;
}

footer ul li:first-child:before {
  display: none;
}
