html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: rgb(4, 4, 4);
  display: flex;
  flex-direction: column;
}

.toolLayout {
  flex: 1;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 110px 0;
  box-sizing: border-box;
}

#sketch-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

#sketch-container canvas {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 2px solid black;
  border-radius: 20px;
  box-sizing: border-box;
}


.bottom-ui {
  position: fixed;

  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;

  padding: 12px 12px;

  background: black;
  border: 1px solid white;
  border-radius: 15px;

  z-index: 1000;
}

.ui-component {
  display: flex;
  align-items: center;
  gap: 14px;
}


.ui-button,
.slider-box {

  background: transparent;
  color: white;

  border: 1px solid white;
  border-radius: 10px;

}


.ui-button {
  padding: 8px 16px;

  font-family: "Inter", sans-serif;
  font-size: 16px;

  cursor: pointer;
}


.ui-button:hover {
  background: white;
  color: black;
}


.slider-box {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;

  background: black;
  color: white;

  border: 1px solid white;
  border-radius: 10px;

  font-family: "Inter", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}


.slider-box label {
  color: white;
  font-size: 16px;
}


.slider-box input[type="range"] {
  width: 75px;
  height: 1px;

  appearance: none;
  background: white;
}


.slider-box input[type="range"]::-webkit-slider-thumb {
  appearance: none;

  width: 10px;
  height: 10px;

  background: white;
  border: none;
  border-radius: 50%;

  cursor: pointer;
}


.slider-box input[type="range"]::-moz-range-thumb {
  width: 8px;
  height: 8px;

  background: white;
  border: none;
  border-radius: 50%;

  cursor: pointer;
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.interLight {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 390;
  font-style: normal;
  font-size: 1.7vw;
}

.nav-list {
  background: rgb(4, 4, 4);
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgb(255, 255, 255);
  padding-bottom: 30px;
}

.nav-item {
  list-style: none;
  margin-right: 45px;
  margin-top: 30px;
  z-index: 200;
}

.nav-item a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: all 300ms ease-in;
  z-index: 200;
}

.nav-item a:hover {
  color: rgb(92, 92, 92);
}

.nav-item:first-child {
  margin-right: auto;
  margin-left: 0;
}

@keyframes sketchAnimation {
  from { opacity: 0%; }
  to { opacity: 100%; }
}

@media (max-width: 600px) {
  .nav-list { background: rgba(255,255,255,0); }
  .nav-item a { font-size: 18px; font-weight: 395; }
  .nav-item { margin-top: 15px; margin-right: 15px; }
  .nav-item:first-child { margin-left: -25px; }
}