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

body {
  background-color: #000;
}
body .hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr auto;
  grid-gap: 20px;
  position: relative;
  width: 100%;
  height: 100vh;
}
body .hero .col {
  grid-column-start: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
body .hero .col img {
  position: relative;
  width: 300px;
  height: auto;
  object-fit: contain;
  object-position: center;
}
body .hero .col .title {
  position: relative;
  text-align: center;
  color: #FF040B;
}
body .hero .col .title h1 {
  font-size: 100px;
  font-weight: 400;
}
body .hero .col .title h1 span {
  font-size: 30px;
  vertical-align: top;
}
body .hero .col .title h3 {
  font-style: italic;
  font-size: 40px;
  font-weight: 400;
}
body .hero article {
  grid-column-start: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
  z-index: 2;
  font-family: "area-normal", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FF040B;
}
body .hero article strong {
  font-weight: 900;
}
body .hero article a {
  text-decoration: none;
  color: #FF040B;
}
body .hero .links {
  grid-row-start: 2;
  grid-column-start: 1;
  grid-column-end: -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 40px 20px 40px;
  z-index: 2;
  font-family: "area-normal", sans-serif;
}
body .hero .links p {
  font-size: 14px;
  color: #FF040B;
}
body .hero .links a {
  text-decoration: none;
  color: #FF040B;
}
body .hero .bg {
  position: absolute;
  height: 100%;
  width: 100vw;
  z-index: 0;
  aspect-ratio: 300/700;
  background: radial-gradient(circle, rgba(255, 4, 11, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
}

@media screen and (max-width: 1640px) {
  body .hero .col {
    align-items: center;
  }
  body .hero .col img {
    width: 200px;
  }
  body .hero .col .title h1 {
    font-size: 40px;
  }
  body .hero .col .title h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1040px) {
  body .hero {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    padding-top: 40px;
  }
  body .hero .col {
    grid-row-start: 1;
    grid-column-start: 1;
  }
  body .hero .col .title h1 span {
    font-size: 20px;
  }
  body .hero article {
    grid-row-start: 2;
    grid-column-start: 1;
    position: relative;
    top: inherit;
    padding: 40px;
    transform: inherit;
    max-width: inherit;
    width: 100%;
  }
  body .hero article p {
    font-size: 16px;
  }
  body .hero .links {
    grid-row-start: 3;
  }
}

/*# sourceMappingURL=style.css.map */
