* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background: linear-gradient(to right, #ba5370, #f4e2d8);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  width: fit-content;
  font-family: "Courier New", Courier, monospace;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 30px 0;
  background: rgb(255, 0, 0);
  background: linear-gradient(
    90deg,
    rgb(124, 9, 9) 0%,
    rgb(150, 69, 3) 50%,
    rgb(32, 95, 7) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

.quote {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
}

.word-active {
  background-color: yellow;
  border-radius: 0.2rem;
  box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.2);
}

.input {
  display: block;
  width: 250px;
  font-size: 1.5rem;
  padding: 5px 12px;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 60px;
}

.incorrect {
  border: 1px solid red;
  background-color: #ff000065;
}

.incorrect::placeholder {
  color: black;
}

.signature {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
}

.game-button {
  width: 130px;
  height: 40px;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  margin-bottom: 40px;
}

.game-button:hover {
  background-color: #ccc;
}

.game-button:active {
  background-color: #aaa;
}

.results {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.5rem;
}
