/* The switch - the box around the slider */
html {
  scroll-behavior: smooth;
}

.switch-container {
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}
.switch-container .slider {
  --background:linear-gradient(to right, #090613ef, #18151f);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  transition: background-color 0.5s;
  border-radius: 30px;
}
.switch-container .slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 50%;
  left: 10%;
  bottom: 15%;
  box-shadow: inset 15px -4px 0px 15px #f8ea27;
  background: var(--background);
  transition: transform 0.5s, box-shadow 0.5s;
}
.switch-container input:checked + .slider {
  background-color: #000;
}
.switch-container input:checked + .slider:before {
  transform: translateX(100%);
  box-shadow: inset 8px -4px 0px 0px #f8f8f4;
}
.switch-container input {
  opacity: 0;
  width: 0;
  height: 0;
}

.navbar .nav-link {
  padding-block: 15px;
  font-weight: bold;
}

.footer {
  padding-block: 30px;
}/*# sourceMappingURL=styles.css.map */