body {
  margin: 0;
  background-color: #101010;
  font-family: "Ubuntu";
  /* overflow: hidden; */
  height: 100%;
}

h1 {
  color: #7367f3;
  text-shadow: 0 0 7px #5449d2;
}

h3 {
  color: #f5c89e;
}

h3 span {
  color: aliceblue;
  text-shadow: 0 0 7px #5449d2;
}

button {
  font-family: "Ubuntu";
  height: 37px;
  /* display: flex; */

  cursor: pointer;
  border: 2px solid #c9864f;
  border-radius: 0.5rem;
  /* font-size: 1.2rem; */

  color: #3c4249;
  background: -webkit-linear-gradient(25deg, #c9864f, #f5c89e);
}

button:hover {
  background: #3c4249;
  color: #f5c89e;
}
.generate-button {
  border-radius: 0 0.5rem 0.5rem 0;
}

.save-button {
  background: transparent;
  margin-left: 1rem;
}

input {
  font-family: "Ubuntu";
  border: 2px solid #c9864f;
  border-radius: 0.5rem 0 0 0.5rem;
  height: 31px;
  padding-left: 5px;
}

input::placeholder {
  padding-left: 5px;
}

.input {
  margin: 2rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.header {
  text-align: center;
}

.cred {
  color: aliceblue;
  font-weight: 300;
  font-size: 8;
  text-align: center;

  padding: 2rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

#scene {
  background: transparent;
  height: 500px;
  width: 500px;

  border: 1px solid #f5c89e;
  border-radius: 2rem;
  transition: all 0.5s ease-in-out;
}

#scene:hover {
  box-shadow: inset 0 0 30px #f5c89e;
}

#loader-container,
#canvas-container {
  text-align: center;
  color: #f5c89e;
}

#loader-container {
  margin: 2rem auto;
}

#loader-container p {
  margin: 0;
}

#loader-container svg {
  width: 30px;
}

.hidden {
  display: none;
}

/* .label-text {
  font-size: 10px;
  fill: grey;
  transform: translate(0, 3px); 
}  */

#apiResponse {
  text-align: center;
  width: 50vw;
  margin: 1rem auto;
  border-radius: 0.25rem;
}

textPath {
  font-size: 5px;
  color: #171717;
  fill: cornsilk;
}

footer {
  /* position: fixed; */
  bottom: 0;
  /* width: 100%; */
  margin: 2rem;
}

#capture {
  padding: 2rem 1rem;
}
#capture-container {
  display: none;
}
#capturedHTML {
  position: absolute;
  z-index: 999;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;

  border-radius: 1rem;
  box-shadow: 0 0 50px black;
}

.blocker {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: rgba(0, 0, 0, 0.5);
}

#capture-container button {
  position: relative;
  z-index: 999999;
  transform: translate(-50%, -50%);
  left: 50%;
  bottom: 30%;
}
