@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@600&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Source Code Pro", monospace;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: rgb(103, 154, 201);
}
.container {
  background-color: rgb(145, 184, 221);
  padding: 1rem;
  border-radius: 0.5rem;
  width: 50rem;
  max-width: 90%;
}
.titleContainer {
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 3rem;
  color: white;
  font-weight: bold;
  background-color: rgb(71, 139, 202);
}
.timer {
  position: absolute;
  top: 7rem;
  font-size: 3rem;
  color: white;
  font-weight: bold;
}
.QuoteDisplay {
  margin-bottom: 1rem;
  margin-left: 1rem;
  user-select: none;
  font-size: 1.2rem;
}
.quote-input {
  background-color: transparent;
  border: 2px solid rgb(58, 58, 58);
  outline: none;
  width: 100%;
  height: 8rem;
  margin: auto;
  resize: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
}
.quote-input:focus {
  border-color: black;
}
.correct {
  color: rgb(13, 102, 10);
}
.incorrect {
  color: rgb(206, 26, 26);
  text-decoration: underline;
}
.ButtonContainer {
  display: flex;
  justify-content: center;
}
.button {
  cursor: pointer;
  outline: none;
  border: 0.1rem solid rgb(233, 141, 4);
  border-radius: 0.4rem;
  width: 6rem;
  height: 3rem;
  font-size: 1.5rem;
  background-color: rgb(194, 98, 19);
  transition: 0.5s;
}
.button:hover {
  background-color: rgb(233, 86, 18);
}
@media (max-width: 900px) {
  .titleContainer {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-size: 2.6rem;
    display: none;
  }
  .timer {
    top: 0;
    font-size: 2rem;
  }
}
