
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');

*{margin: 0; padding: 0; box-sizing: border-box; -webkit-user-select: none; -ms-user-select: none; user-select: none;}

body
{
  background-color: #F2EDDC;
  font-family: 'Architects Daughter', cursive;
}
h1
{
  font-size: 100px;
  margin: 10px;
  padding: 5px;
  text-align: center;
  border-bottom: 2px dashed black;
}
.poem
{
  font-size: 30px;
  text-align: center;
  margin: 30px;
  color: navy;
}
span
{
  color: darkred;
}

.get-words
{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

label, input, .enter
{
  font-size: 30px;
  height: 52px;
  width: fit-content;
  margin: 10px;
  font-family: 'Architects Daughter', cursive;
  padding: 3px;
}
#qwerty
{
  width: 200px;
}
input
{
  border: solid 1px black;
  border-radius: 8px;
  color: darkred;
}
.enter
{
  color: navy;
  width: 800px;
  display: flex;
  justify-content: center;
}
form div:last-child
{
  width: 800px;
  display: flex;
  justify-content: center;
}
.submit
{
  text-align: center;
  margin: 15px;
  padding: 5px;
  font-size: 20px;
  width: fit-content;
  border: ridge 2px gray;
  border-radius: 5px;
  background-color: white;
  height: fit-content;
  color: black;
}
h3
{
  text-align: center;
  margin: 20px 5px 5px 5px;
  padding: 8px;
  font-size: 40px;
  color: crimson;
  background-color: deepskyblue;
  width: fit-content;
  border: ridge 2px navy;
  border-radius: 5px;
  font-style: italic;
}
h4
{
  text-align: center;
  margin: 5px 20px;
  padding: 8px;
  font-size: 40px;
  width: fit-content;
  border: ridge 2px black;
  border-radius: 5px;
  background-color: white;
}
.buttons
{
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-top: 2px dashed black;
  margin-top: 20px;
}
div.buttons div
{
  margin: 5px auto;
}
h3:hover
{
  text-shadow: 2px 2px darkred;
  cursor: pointer;
}
h4:hover, .submit:hover
{
  text-shadow: 1px 1px black;
  cursor: pointer;
}
.hide
{
  display: none;
}

