* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.whole_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.whole_section .container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 650px;
  width: 100%;
  height: 50vh; /* Set height to 100% */
  overflow: hidden;
  margin: auto;
}
.whole_section .container .carousel_image {
  display: flex;
  max-width: 100%;
  position: absolute;
}
.whole_section .container .carousel_image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.whole_section .container .carousel_navigation {
  width: 100%;
  padding: 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
}
.whole_section .container .carousel_navigation .carousel_nav {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin: 0 0.5rem;
  cursor: pointer;
}
.whole_section .container .carousel_navigation .carousel_button_selected {
  background: rgb(255, 255, 255);
}
.whole_section .container .carousel_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whole_section .container .carousel_controls button {
  position: absolute;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: none;
  background: none;
  padding: 0 0.5rem;
  font-size: 3rem;
}
.whole_section .container .carousel_controls button:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}
.whole_section .container .carousel_controls #button_left {
  left: 10px;
}
.whole_section .container .carousel_controls #button_right {
  right: 10px;
}/*# sourceMappingURL=main.css.map */