 .Slider {
  position: relative;
  max-width: 100vw;
  margin: auto;
  overflow: hidden;
}

.Slider-wrapper {
  overflow: hidden;
}

.Slider-in {
  display: flex;
  transition: transform 0.6s ease;
  align-items: center;
  margin-top: 0.6em;
}

#slider div {
  flex-shrink: 0;
  transition: all 1.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
}

#slider img {
  max-width: 600px;
  border-radius: 20px;
  cursor: zoom-in;
}

#slider .active {
  opacity: 1;
  display: flex;
  filter: blur(0);
  transform: scale(1);
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 1.5em;
  display: flex;
  justify-content: center;
  gap: 50%;
}

#prev,
#next {
  color: black;
  background: rgba(255, 255, 255, 0.172);
  backdrop-filter: blur(20px);
  width: 3.5em;
  height: 3.5em;
  align-items: center;
  display: flex;
  border: 3px solid #48ff00;
  border-radius: 999px;
  justify-content: center;
  box-shadow: 0 0px 5px 0px #000000;
  transition: background-color 0.2s ease-in;
}

#prev:hover,#next:hover,#prev:focus-visible,#next:focus-visible{
	background-color: #0cff63;
	box-shadow: 0 0px 5px 0px #000000, 0 0px 5px 0px #0cff63;
}

dialog{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 80%;
	max-width: fit-content;
	max-height: none;
	justify-self: center;
	align-self: center;
}

::backdrop{
	backdrop-filter: blur(20px);
}