body {
  /* padding-top: 1em; */
  margin: 0;
  background: #242424;
  color: #cccccc;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo-image {
  width: 150px;
  padding-top: 40px;
}

.title {
  text-align: center;
  color: #cccccc;
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.container {
  margin: 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  flex: 1;
}

.controlContainer {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
label,
.upload {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-bottom: 24px;
  align-items: center;
}

input {
  flex-grow: 2;
}

.tag {
  width: 120px;
}
canvas {
  width: 600px;
  max-width: 90vw;
}

footer {
  flex: 0 0 auto;
  align-self: center;
  margin: 0px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  color: #cccccc;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}
footer a{
  color: #cccccc;
}
.footer-image {
  margin: 0;
  width: 20px;
  height: auto;
}

button {
  margin: 40px 20px 0px 20px;
  position: relative;
  /* left: 50%;
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%); */
  outline: none;
  border: none;
  cursor: pointer;
  display: block;
  background-color: #3fbb9b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  width: 100%;
  max-width: 400px;
  padding: 20px 80px;
  border-radius: 20px;
  box-shadow: 0 6px rgba(0, 0, 0, 0.1);
  transition-duration: 0.2s;
  top: 0px;
}

button:hover {
  box-shadow: 0 6px rgba(0, 0, 0, 0.3);
  top: 3px;
}

button:active {
  box-shadow: none;
  top: 8px;
}

input::file-selector-button {
  -webkit-appearance: none;
  font-size: 14px;
  padding: 5px 12px;
  background-color: #3fbb9b;
  color: white;

  border: none;
  border-radius: 3px;
}

input::file-selector-button {
  -webkit-appearance: none;
  font-size: 14px;
  padding: 5px 12px;
  background-color: #3fbb9b;
  color: white;
  border: none;
  border-radius: 3px;
  transition-duration: 500ms;
}

input::file-selector-button:hover {
  background-color: #2c826d;
}

input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 5px;
  background: rgba(104, 104, 104, 0.6);
  border-radius: 5px;
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #3fbb9b;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 rgb(133, 208, 14);
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #0ecec1;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 rgb(239, 0, 203);
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #0043fc;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 rgb(10, 199, 70);
  transition: background 0.3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #2c826d;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #2c826d;
}

input[type="range"]::-ms-thumb:hover {
  background: #2c826d;
}

/* Input Track */
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

/* Hide the browser's default checkbox */
.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: relative;
  top: 0;
  left: 12px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
  transition-duration: 500ms;
}

/* On mouse-over, add a grey background color */
.checkcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkcontainer input:checked ~ .checkmark {
  background-color: #3fbb9b;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkcontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
