body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
  background-color: black;
}

h1 {
  text-align: center;
  margin: 0;
  margin-top: 30vh;
  font-size: 3rem;
  color: rgb(194, 73, 73);
}

.container {
  height: 20%;
  width: 100%;
}

.control-panel {
  height: 100%;
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.control-panel hr {
  width: 95%;
}

.light-track {
  display: flex;
  column-gap: 10px;
}

.buttons button {
  height: 40px;
  width: 80px;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin: 0 1px;
  font-size: 1.2rem;
}

#start {
  background-color: rgb(194, 73, 73);
}

#stop {
  background-color: rgb(46, 10, 252);
}

#start:hover {
  background-color: rgb(194, 73, 73, 0.8);
}

#stop:hover {
  background-color: rgb(39, 16, 170);
}

.box {
  height: 80px;
  width: 160px;
  background-color: white;
  border-radius: 5px;
}

.active-light {
  background-color: red !important;
}

.secondary-light {
  background-color: rgb(255, 50, 50) !important;
}

.tertiary-light {
  background-color: rgb(255, 100, 100) !important;
}

.faint-light {
  background-color: rgb(255, 150, 150) !important;
}

.faintest-light {
  background-color: rgb(255, 200, 200) !important;
}
