@import url(./style.css);

body .navbar {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.slider-buttons {
  display: flex;
  width: 115px;
  padding: 5px;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  border: 1px solid var(--white, #f7f7f7);
  background: rgba(247, 247, 247, 0.3);
  backdrop-filter: blur(47px);
}
.slider-btn {
  display: flex;
  padding: 5px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  cursor: pointer;
}
.slider-btn-prew {
  background: #f7f7f7;

  /* glow:active] */
  box-shadow: 0px 4px 50px 0px #3b74a8,
    0px 0px 180px 0px rgba(34, 104, 119, 0.4) inset;
}
.slider-btn-next {
  background: #14141a;

  /* glow:active] */
  box-shadow: 0px 4px 50px 0px #3b74a8,
    0px 0px 180px 0px rgba(34, 104, 119, 0.4) inset;
}
.slider-btn svg {
  fill: #fff;
  background-blend-mode: multiply;
}
