@font-face {
  font-family: "font";
  src: url("./font.woff2");
}
@font-face {
  font-family: "font-black";
  src: url("./font_black.woff2");
}
body {
  font-family: "font", sans-serif;
  line-height: 1.6rem;
  font-size: 1.55rem;
  font-weight: 100;
}

.parent {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 60px;
}

.div1 {
  grid-column: span 7 / span 7;
  color: black;
}

.div2 {
  grid-column: span 5 / span 5;
  grid-column-start: 8;
  height: inherit;
}

.div2 img {
  width: 90%;
  height: auto;
  object-fit: cover;
  object-position: right;
}

/*
Make it responsive even image
*/

@media (max-width: 768px) {
  .parent {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-right: 0;
  }

  .div1 {
    grid-column: span 1 / span 1;
  }

  .div2 {
    grid-column: span 1 / span 1;
    grid-column-start: 1;
  }
  .div2 img {
    width: 100%;
  }
}

.low-line p {
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: underline;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-05 {
  margin-top: 0.5rem;
}

.f-bold {
  font-family: "font-black", sans-serif;
}
