body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  max-width: 100%;
  margin: 10px;
  padding: 0;
  font-family: "Architects Daughter", cursive;
}

h2 {
  color: green;
  font-family: "Architects Daughter", cursive;
  font-size: 50px;
  margin-top: 50px;
}

h3 {
  margin-top: 100px;
  color: white;
  font-family: "Architects Daughter", cursive;
  font-size: 50px;
}

.grid-container {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin-top: 10px;
  margin-bottom: 50px;
  align-content: center;
  max-width: 100%;
}

.carousel-container {
  display: inline-block;
}

.item {
  display: flex;
  justify-content: center;
  height: 250px;
}

.abeja {
  background-color: bisque;
  grid-row: 2;
  grid-column: 2;
}

.abeja-site {
  background-color: bisque;
  grid-row: 1;
  grid-column: 2;
}

.hunter {
  background-color: gray;
  grid-column: 3;
}

.hunter-site {
  background-color: gray;
  grid-column: 3;
  grid-row: 2;
}

.cadet {
  background-color: goldenrod;
  grid-column: 1;
}

.cadet-site {
  background-color: goldenrod;
  grid-column: 1;
  grid-row: 2;
}

.carousel-inner {
  width: 1000px;
  margin: auto;
}

@media (max-width: 680px) {
  body {
    display: flex;
    justify-content: left;

    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "Architects Daughter", cursive;
  }
  h2 {
    color: green;
    font-family: "Architects Daughter", cursive;
    font-size: 25px;
    margin-top: 50px;
  }
  .grid-container {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    margin-top: 10px;
    margin-bottom: 50px;
    align-content: center;
  }

  .item {
    display: flex;
    justify-content: center;
    height: 250px;
   }

  .abeja {
    background-color: bisque;
    grid-row: 2;
    grid-column: 1;
  }

  .abeja-site {
  display: none;

  }

  .hunter {
    background-color: gray;
    grid-column: 1;
    grid-row: 1;
  }

  .hunter-site {
    display: none;

  }

  .cadet {
    background-color: goldenrod;
    grid-column: 1;
    grid-row: 3;
  }

  .cadet-site {
    display: none;

  }
  .carousel-inner {
    width: 480px;
    margin: auto;
  }

}

.interview-link {
  color: red;
  font-weight: bold;
  font-family: "Roboto", cursive;
  font-size: 25px;
  margin-top: 50px;
}

.links {
  color: blueviolet;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  margin-top: 50px;
}
.interview {
  color: green;
  font-family: "Roboto", sans-serif;
  font-size: 50px;

}

.sub {
  font-size: 35px;
}