body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: inter;
}

.image-row {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

.image-container {
  position: relative;
  width: 20%;
}

.image-info {
  text-align: center;
  margin-top: 10px;
}

.image-info h2 {
  font-size: 1.6em;
  color: #333;
  margin: 0 0 5px 0;
}

.image-info p {
  font-size: 1.4em;
  color: #666;
  margin: 0;
}

.image {
  width: 80%;
  height: auto;
  display: block;
  margin-left: 25px;
  margin-right: 25px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  width: auto;
  padding: 9px;
  margin-top: -22px;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;

  color: black;
}

.next {
  right: 10%;
}

.prev {
  left: 0;
}

.prev:hover,
.next:hover {
}

@media screen and (max-width: 600px) {
  .image-container {
    width: 100%;
  }
  .image-row {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
  }

  .image {
    width: 70%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3.1em;
  }
}
