#banner {
  margin: 10px 0;
  width:100%;
  display: grid;
}

#banner-image {
  position: relative;
  width: 100%;
  grid-area: 1 / 1 / 2 / 2;
  aspect-ratio: 3 / 1;
  overflow: hidden;
}

#banner-image img {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  transition: left 1.5s;
}

#banner-title {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: end;
  font-size: 18pt;
  margin: 10px;
  text-align: right;
  z-index: 0;
  transition: color 1.5s;
}

#banner-links div, #banner-links img {
  width: 35px;
  height: 35px;
}

#about-container {
  margin-top: 20px;
}

#about-title {
  font-size: 16pt;
  font-weight: bold;
}

#about-description {
  font-size: 11pt;
  margin-top: 10px;
}

#image-tiles {
  margin: 30px 0 20px 0;
  display: flex;
  justify-content: center;

  gap: 50px;
  flex-wrap: wrap;
}

.image-tile img {
  width: 200px;
}

#slideshow {
  margin: 30px 60px 20px 60px;

  display: grid;
  grid-template-columns: 50px 1fr 50px;
  grid-template-rows: 1fr 50px;
}

#slideshow-main {
  width: 100%;
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

#slideshow-main img {
  width: 100%;
}

#slideshow-left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

#slideshow-left div {
  width: 80%;
}

#slideshow-left img {
  width: 100%;
}

#slideshow-right {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

#slideshow-right div {
  width: 80%;
}

#slideshow-right img {
  width: 100%;
  transform: scaleX(-1);
}

#slideshow-dots {
  color: white;
  grid-column: 2 / 3;
  grid-row: 2 / 3;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.slideshow-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: white;
  border: 2px solid black;
  box-sizing: border-box;
}

.slideshow-dot.active {
  background-color: black;
  border: 2px solid white;
}

@media screen and (max-width: 690px) {
  #slideshow {
    grid-template-columns: 30px 1fr 30px;
    grid-template-rows: 1fr 50px;
  }

  .slideshow-dot {
    width: 15px;
    height: 15px;
  }
}

@media screen and (max-width: 600px) {
  #slideshow {
    margin: 30px 0 20px 0;
  }

  #banner-title {
    grid-area: auto;
    justify-self: auto;
    font-size: 12pt;
    text-align: left;

    margin: 10px 0 0 10px;

    color: black !important;
  }

  #about-title {
    font-size: 14pt;
  }

  #about-description {
    font-size: 9pt;
  }
}
