@import url("https://fonts.googleapis.com/css2?family=Baloo+Da+2&family=Fira+Mono&family=IBM+Plex+Mono&family=Inter&family=PT+Serif&family=Playfair+Display&family=Red+Rose&family=Roboto&display=swap");

body {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  padding-top: 50px;
  padding-bottom: 50px;
}

#app {
  width: 100%;
}

p {
  font-size: 16px;
  line-height: 24px;
}

img {
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 0px 2.2px rgba(0, 0, 0, 0.02), 0 0px 5.3px rgba(0, 0, 0, 0.028),
    0 0px 10px rgba(0, 0, 0, 0.035), 0 0px 17.9px rgba(0, 0, 0, 0.042),
    0 0px 33.4px rgba(0, 0, 0, 0.05), 0 0px 80px rgba(0, 0, 0, 0.07);
}

#name {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", "Inter",
    "Helvetica", "Arial", sans-serif, apple color emoji, segoe ui emoji,
    segoe ui symbol;
  width: 80%;
  margin: auto;
  max-width: 580px;
  padding: 10px 20px;
  border-radius: 3px;
  margin-top: 0px;
  border: 1px solid black;
}

#introtext {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", "Inter",
    "Helvetica", "Arial", sans-serif, apple color emoji, segoe ui emoji,
    segoe ui symbol;
  width: 80%;
  margin: auto;
  max-width: 580px;
  padding: 10px 20px;
  border-radius: 3px;
  margin-top: 0px;
  border: 1px solid black;
}

.color {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", "Inter",
    "Helvetica", "Arial", sans-serif, apple color emoji, segoe ui emoji,
    segoe ui symbol;
  padding: 10px 20px;
  border-radius: 3px;
  border: 1px solid black;
}

#canvas-wrap {
  overflow: auto;
  text-align: center;
}

#wrap {
  overflow: auto;
  text-align: center;
}

button {
  border: 1px solid black;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--primary);
  font-size: 16px;
  transition: 150ms;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
}

button:hover {
  background-color: black;
  color: white;
  transition: 150ms;
}

button:active {
  background-color: yellow;
  color: black;
  transition: 150ms;
}

#generated-prompt {
  display: none;
}

#steps-prompt {
  display: none;
  overflow: auto;
}

#steps {
  display: none;
  overflow: auto;
}

.heart {
  color: #e25555;
}

a {
  text-decoration: none;
  color: #9803fc;
}

.code {
  font-family: "IBM Plex Mono", monospace;
}

#add-to-github {
  background-color: yellow;
  border-radius: 5px;
  border: 1px solid black;
  max-width: 580px;
  margin: auto;
  padding: 10px 20px;
  display: none;
}
