* {
  margin: 0;
  padding: 0;
}

body {
  color: goldenrod;
  background-color: rgb(255, 242, 208);
  box-sizing: border-box;
}
img {
  max-width: 100%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 700px
}
.img-button-section {
  display: flex;
  height: 100%; 
  align-self: center;
  align-items: center;
}
.img-flex {
  height: 400px;
  position: relative;
  overflow: hidden;
  
}


button {
  display: flex;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background: none;
}


button:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}


#carousel-image-wrapper {
  width:500px;
  display: flex;
  overflow: hidden;
}
#carousel-image-wrapper img{
    position: absolute;

    transition: 200ms linear;
}

.dot-nav{
    display: flex;
    justify-content: center;
    gap:20px;
}

.dot-nav button{
  background-color: pink;
  width: 20px;
  height: 20px;
}
