html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(
    180deg,
    rgba(112, 1, 1, 1) 0%,
    rgba(112, 1, 1, 1) 26%,
    rgba(53, 6, 6, 1) 59%,
    rgba(10, 10, 10, 1) 100%
  );
  color: white;
}

.ok {
  color: #00ff00;
  font-weight: bold;
}
.vide {
  color: gray;
}

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  margin-top: 5%;
}

#result {
  margin-top: 20px;
  text-align: left;
}

ul {
  padding-left: 1rem;
}

#codeForm {
  max-width: 400px;
}

#code {
  font-size: 14px;
  width: 50%;
  margin: auto;
  text-align: center;
  height: 20px;
}

.resultText {
  text-align: center;
}

@media (max-width: 576px) {
  .resultText {
    font-size: 18px;
  }
}
