.ocean-background {
  min-height: calc(
    100vh - 143px - 102px
  ); /*    header  footer */
  background-position: center;
  background-size: cover;
  background-image: url("/static/img/water.png");
}

.index-main-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.book-cover {
  max-width: calc(100vw - 40px);
  max-height: 680px;
}

.info {
  display: inline-block;
  max-width: 410px;
  text-align: left;
  font-size: 16px;
  padding: 20px;
  height: min-content;
  background-color: var(--ncsu-black);
  color: var(--ncsu-white);
}

.info-header {
  font-weight: 700;
  font-size: 24px;
}

.info-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.info-buttons > a {
  font-weight: 700;
  flex: 1;
  font-size: 14px;
  padding: 10px;
  color: var(--ncsu-white);
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--ncsu-white);
}

.bottom-images {
  height: 25px;
  min-height: calc(
    100vh - 143px - 102px - 680px
  ); /*    header  footer  .info */

  width: 100vw;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.bottom-images [data-left] {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-width: 226px;
}

.bottom-images [data-right] {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 770px;
}

@media screen and (max-width: 600px) {
  .info {
    font-size: 16px;
  }

  .info-header {
    font-size: 18px;
  }
}

@media screen and (max-width: 891px) {
  .bottom-images {
    height: 188px;
  }
}
