body {
  background-color: rgb(230, 229, 201);
  font-family: sans-serif;
  width: 90%;
  margin: 0 auto;
}

header {
  background-color: rgb(181, 201, 208);
  padding-top: 1px;
  padding-bottom: 15px;
  margin-top: 20px;
  border: 3px solid rgb(58, 64, 74);
}

header h1, h3{
  text-align: center;
}

header ul {
  width: 70%;
  margin: 0 auto;
}

#message {
  float: right;
}

.medal {
  background-repeat: no-repeat;
  background-size: contain;
  height: 125px;
  width: 125px;
  margin: 20px 40%;
}
#gold {
  background-image: url("images/gold-medal.png");
}

#silver {
  background-image: url("images/silver-medal.png")

}

#bronze {
  background-image: url("images/bronze-medal.png")
}

#start-buttons {
  width: 25%;
  margin: 40px auto 20px auto;
  text-align: center;
}

.start-button {
  padding: 10px 15px;
  font-size: 40px;
  color: rgb(224, 224, 224);
  border: 0px;
  border-radius: 6%;
  box-shadow: 2px 2px 4px 2px rgb(74, 74, 73);
}

.start-button {
  background-color: rgb(22, 101, 5);
}


#board-area {
  float: left;
  margin-left: 10%;
}

#time-display {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin: 20px 0;
}

table {
  border: 10px solid rgb(20, 27, 75);
  border-radius: 7.5%;
  background-color: rgb(20, 27, 75);
  margin-top: 35px;
}
.cell {
  font-size: 52px;
  font-weight: bold;
  padding: 10px 20px;
  background-color: rgb(219, 228, 245);
  border: 7px solid rgb(20, 27, 75);
  border-radius: 7.5%;
}

#word-input {
  font-size: 36px;
  width: 65%;
  height: 55px;
  margin: 25px 15%;
  padding-left: 15px;
  padding-top: 10px;
  background-color: rgb(224, 233, 250);
  border: 5px solid rgb(20, 27, 75);
}
#result-area {
  width: 33%;
  margin: 0 15% 0 auto;
}

#score-display {
  text-align: center;
  font-size: 42px;
  font-weight: bold;
  margin: 40px 0;
}
#word-list {
  width: 95%;
  margin: 10px auto;
  height: 600px;
  background-color: rgb(224, 233, 250);
  border: 5px solid rgb(20, 27, 75);
}

#words {
  list-style-type: none;
}

@media screen and (max-width: 1000px) {
  #result-area {
    width: 90%;
    margin 0 auto;
    clear: left;
  }
}
