:root {
  --border: 0.01px solid rgba(255,255,255,0.2);
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 25px;
}

body {
  background-color: black;
  color: white; 
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
}

#canvas1 {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  z-index: 1;
}

#background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: 'red';
}

.ui-box {
  border: var(--border);
  position: absolute;
  top: 60px;
  left: 10px;
  height: content-fit;
  width: 25%;
  z-index: 1000;
  border-radius: 10px;
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255,255,255,0.05)
}

#input {
  background-color: rgba(0,0,0,0);
  border: var(--border);
  color: white;
  font-size: 1.3em;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}

#input::placeholder {
  color: white;
  font-size: 0.8em;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

#input:focus {
  border: 0.01px solid white;
  outline: none;
}

h1, h2 {
  color: "white";
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 25px;
  font-weight: 500;
}

p{
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

button {
  padding: 10px 20px;
  background-color: rgba(0,0,0,0);
  border: var(--border);
  border-radius: 7px;
  color: white;
  transition: 0.1s;
  font-size: 1em;
  font-weight: bold;
  font-family: "IBM Plex Mono"
}

button:hover {
  cursor: pointer;
  background-color: rgba(255,255,255,0.2);
}

footer {
  position: absolute;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;

  bottom: 20px;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.05);
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border-bottom: var(--border);
  width: 100vw;
  z-index: 1000;
}

header img {
  height: 25px;
  margin: 0;
  padding:0;
  z-index: 1000;
}
h5{
  margin-bottom: 10px;
}
li {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}
hr {
  color: rgba(255,255,255,0.2);
  height: 0.5px;
}