html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Neue Haas Grotesk Display Pro';
  font-weight: 350;
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 25px; /* 166.667% */
  letter-spacing: 1.591px;
}

p,
input[type='range'] {
  margin: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

#tool-layout {
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 100vh;
  display: flex;
}

#artboard-placeholder {
  width: 100%;
}
#artboard {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 3;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
}

#gui-left {
  background: #f1f1f1;
  padding: 40px;
  max-width: 500px;
  min-width: 355px;
  flex-grow: 1;
}

.description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  font-weight: 450;
  line-height: 17px;
  letter-spacing: 1.59px;
}
a {
  text-decoration-color: black;
  color: black;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration: unset;
}

.control {
  margin-bottom: 21px;
}
.control-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.control-name,
.control-value {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Neue Haas Grotesk Display Pro';
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 25px; /* 166.667% */
  letter-spacing: 1.591px;
  text-transform: uppercase;
}
.control-name {
}
.control-value {
  width: max-content;
}
.control-range {
  width: 100%;
}

.buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button {
  padding: 10px 13px;
  border: 1px solid black;
  width: max-content;
  font-size: 12px;
  font-style: normal;
  font-weight: 450;
  line-height: 13px; /* 108.333% */
  letter-spacing: 1.591px;
  text-transform: uppercase;
  cursor: pointer;
}
.button.is-active {
  background-color: #f5efdd;
}

.print {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}
.print-button {
  padding-left: 18px;
  padding-right: 18px;
}
.print-ext {
}

.control-range {
  height: 20px;
  width: 100%;
  border: 1px solid black;
  position: relative;
}
.control-range-bar {
  background: black;
  height: 100%;
  width: 50%;
  position: absolute;
}

#display-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 450;
  line-height: 50px; /* 166.667% */
  letter-spacing: 1.591px;
  text-transform: uppercase;
  margin-top: 61px;
  margin-bottom: 27px;
  width: 100%;
  background: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
}

.switch {
  position: relative;
  height: 20px;
  width: 100%;
  border: 1px solid black;
  cursor: pointer;
}
.switch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-right: 1px solid;
  background-color: black;
}
.switch::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.switch.is-active::before {
  background: transparent;
}
.switch.is-active::after {
  background-color: black;
}

.footnote {
  margin-top: 55px;
}
