.wrapper {
  display: grid;
  height: 100vh;
  grid-template-columns: 1fr;
  grid-template-rows: 0.1fr 1fr 0.1fr;
  grid-template-areas:
    "navBar"
    "content"
    "footer";
}

.content {
  display: grid;
  grid-template-areas: 
  "slideHolder"
  "imageHolder1"
  "imageHolder2"
  "imageHolder3"
  ;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
}

.content img {
  width: 100%;
  object-fit: contain;
}

.slideHolder {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageHolder1 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageHolder2 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageHolder3 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageHolder4 {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
  opacity: 1;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.slider-controls button {
  background-color: transparent;
  border: none;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  padding: 0 10px;
} 

.divider {
  background-color: white;
  width: 100%;
  height: 100%;
}

.footer {
  width: 100%;
  background-color: rgb(112, 80, 200);
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(8px, 0.7vw, 15px);
  font-weight: 0;
  position: relative;
  bottom: 0;
}

.footer h2{
  color: rgb(251, 248, 83);
}