* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: flex-start;
  background-color: #fff;
}

.reset-button {
  font-size: 16px;
  height: 30px;
  line-height: 8px;
  margin-top: 20px;
}

.win-loss-container {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

button {
  background: radial-gradient(circle, rgb(140, 200, 240) 0%, rgba(33, 61, 187, 0.954) 100%);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 1.25px;
  line-height: 25px;
  max-width: 255px;
  padding: 5px 20px;
  text-align: center;
  margin-top: 0.6em;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
  background-color: #fff;
  color: black;
}

section {
  text-align: center;
  padding: 5px;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

section {
  flex: 0 auto;
  padding: 8px;
  margin-top: 50px;
  background-color: white;
  border-radius: 8px;
}

.word-guess {
  width: 55vw;
  height: 400px;
}

.results {
  width: 30vw;
  height: 400px;
}

.card {
  background: radial-gradient(circle, rgba(240,230,140,1) 0%, rgba(187,124,33,0.604079131652661) 100%);
  border: 1px solid #eceff1;
  border-radius: 8px;
  box-shadow: rgba(60, 64, 67, 2) 0 1px 2px 0,
    rgba(60, 64, 67, 0.15) 0 2px 4px 3px;
  margin: auto;
  padding: 20px;
}

.word-blanks {
  line-height: 360px;
}

.medium-font {
  font-size: 2.5em;
  text-align:center;
}

.timer {
  height: 240px;
  padding: 10px;
  background: #13293d;
  color: #fff;
  text-align: center;
}

.timer-text {
  padding: 55px;
}

@media screen and (max-width: 1183px) {
main {
  flex-direction: column;
}

section {
  background-color: white;
  margin: 20px auto;
  width: 92vw;
}
}

@media screen and (max-width: 504px) {
.questions {
  font-size: 2em;
}

.clear-high-scores {
  font-size: 12px;
  width: 20ox;
  
}

.timer-text {
  height: 200px;
}