body {
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: rgb(42, 52, 91);
}


.wrapper {
  margin: 1rem 2rem;
  display: flex;
  position: relative;
}

.wrapper i {
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: rgb(254, 16, 83);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
  background: rgb(221, 7, 67);
  transition: background-color 0.3s ease;

}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper .carousel {
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.carousel.dragging {
  cursor: grab;
  scroll-behavior: auto;
}

.carousel.dragging img {
  pointer-events: none;
}


.carousel img {
  border-radius: 10px;
  object-fit: cover;
  user-select: none;
  margin-left: 15px;
  width: calc((100% - 60px) / 5);
}

#image-container {
  margin-top: 1rem;
  height: 400px;
  width: auto;
  position: relative;
  align-self: flex-end;

  display: flex;
  align-items: flex-end;



}

#image-container img {
  height: 100%;
}




.keimeno {
  justify-content: center;
  display: inline-flex;
  box-sizing: border-box;
  flex-direction: column;
  max-width: 35%;
  color: white;
  background-color: #1b2238;
  padding: 40px;
  border-radius: 50px;
  font-family: 'play';
  flex-grow: 2;
  flex-shrink: 0;
  flex-basis: auto;
  line-height: 1;
  margin-bottom: 2rem;

}

.blue {
  color: #168bad
}

.keimeno p {
  font-size: 1.1rem;
  line-height: 28px;
  margin-bottom: 1rem;

}

.keimeno h2 {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 2rem;
}



.keimeno button {
  display: block;
  position: relative;
  font-size: larger;
  border-radius: 15px;
  padding: 10% 5%;
  text-decoration: none;
  background-color: #4564af;
  border: none;
  color: white;
  margin-top: 10px;
  min-width: 150px;
  cursor: pointer;
  font-family: 'play';
}

.keimeno a {
  display: block;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

#main {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  margin-top: 1rem;
  width: fit-content;
  justify-content: center;
  border-bottom: 5px solid #1f263f;
}


@media screen and (max-width: 1600px) {

  .carousel img {
    width: calc((100% - 45px) / 4);
  }


}

@media screen and (max-width: 1300px) {

  .carousel img {
    width: calc((100% - 30px) / 3);
  }

  #main {
    flex-direction: column-reverse;
  }

  #keimeno {
    margin: 0 auto 2rem auto;
    max-width: 60%;
  }

  #image-container {
    margin: 1rem auto 0;
  }



}

@media screen and (max-width: 1000px) {

  .carousel img {
    width: calc((100% - 15px)/ 2);
  }

  #keimeno {
    max-width: 80%;
  }

  #image-container {
    width: 90%;
    height: auto;
  }

  #image-container img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 600px) {

  .carousel img {
    width: 100%;
    margin-left: 0;

  }

  #keimeno {
    max-width: 90%;
  }

}

@media screen and (min-width: 2000px) {
  #image-container {
    height: 550px;
    margin-top: 4rem;

  }


  #main {
    margin-top: 4rem;
  }

}