@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-image: url("https://img.pikbest.com/wp/202408/rocket-launch-illustration-your-business-with-a-3d-on-dark-blue-background-stunning-rendered_9736630.jpg!w700wp");
  /* Cor de fundo */
  background-size: cover;
  background-repeat: no-repeat;
  color: #e4e4e7;
  /* Cor dos textos */
  padding: 40px;
  display: flex; /* Mostra os itens - habilita super poderes */
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

h1 {
  font-size: 40px;
  /* tamanho do texto */
  color: #fafafa;
  font-weight: bold;
  /* Grossura da fonte */
  /* bold = negrito */
}

span {
  color: #22c55e;
}

p {
  color: #71717a;
  margin: 10px;
}

textarea {
  resize: none;
  width: 100%;
  max-width: 640px;
  /* Largura */
  padding: 16px;
  border: 1px solid #515158;
  /* trocar a cor da borda*/
  border-radius: 10px;
  /* arredondar a borda */
  background: #141419; /* cor de fundo */
  color: #fafafa;
  outline: none;
  margin-top: 20px;
}

button {
  width: 100%;
  max-width: 640px;
  background: #22c55e;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  padding: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.1s ease-in-out;
}

button:hover {
  background-color: #42a165;
}

button:active {
  background-color: #16a34a;
  color: #333232;
}

.bloco-codigo {
  background: #141419;
  border: 1px solid #27272a;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  color: #34d399;
  line-height: 2;
  overflow: auto;
  width: 100%;
  max-width: 450px;
  /* largura maxima */
  max-height: 450px;
  /* altura máxima */
  white-space: pre-wrap;
}

.resultado-codigo {
  width: 100%;
  max-width: 450px;
  height: 100%;
  min-height: 350px;
  border: 1px solid #27272a;
  border-radius: 12px;
  background: #141419;
  max-height: 450px;
  margin: 10px;
}

.resultado {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
