* {
  overflow: hidden;
}
body {
  height: 100dvh;
  overflow: hidden;
  background-color: var(--bg);
}
main {
  height: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.canvas-con {
  width: 60%;
  height: 60%;
  cursor: pointer;
}
footer {
  height: 20%;
  overflow: hidden;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a8a8a8;
  column-gap: 0.2rem;
}
input {
  border-radius: 5px;
  border: none;
}
.inputs-con {
  width: 100%;
  height: 85%;
  background-color: #000b48;
  border-radius: 10px;
  padding: 0.5rem;
}
.gradient {
  padding: 0.5rem 0;
}
button {
  border: none;
  border-radius: 5px;
  padding: 0.1rem 1rem;
  color: #b1b1b1;
  background-color: #ebebeb;
  font-weight: bold;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
label.active {
  color: #fa9303;
}
button.active {
  color: #ff8400;
}
@media screen and (orientation: portrait) {
  main {
    height: 50%;
  }
  footer {
    height: 50%;
  }
  .inputs-con,
  .canvas-con {
    width: 100%;
    height: 100%;
  }
  .inputs-con {
    scale: 0.95;
  }
}
