@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

body {
  background: rgb(240, 240, 240);
}

#header {
  background-color: #505050;
  color: #fff;
  padding: 8px 0 4px;
  border-bottom: 1px solid #f0ebeb;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.previousWordDisplay {
  background: rgb(0, 0, 0);
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  height: 200px;
}

#previoudlabel {
  text-align: center;
  background: rgb(0, 0, 0);
  color: #fff;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  height: 40px;
  font-size: 30px;
}

#previousWord {
  background: rgb(51, 51, 51);
  text-align: center;
  color: rgb(255, 201, 66);
  width: 70%;
  margin-right: auto;
  margin-left: auto;

  height: 100px;
  font-size: 60px;
}

.input {
  background-color: rgb(191, 191, 191);
  text-align: center;
  margin-top: 100px;
  height: 250px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

#nextWordInput {
  text-align: center;
  border: 0;
  padding: 10px;
  font-size: 1.3em;
  font-family: Arial, sans-serif;
  color: black;
  border: solid 1px #ccc;
  margin: 5% 0 20px;
  width: 300px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
}


#nextWordInput:focus {
  border: solid 1px #EEA34A;

}


#reset {
  text-align: center;
  border-radius: 5px;
  background-color: lightgreen;
  padding: 10px;
  text-decoration: none;
  color: black;

}

.input>label {
  display: block;
}