/* CSS Stylesheet for Word site*/


h1 {
  text-align: center;
  font-weight: normal;
  font-size: 2vh;
  color: #0d101c;
  font-family: Helvetica, Arial, Courier;
  background-color: transparent;
  margin: 1rem;
}

body {
  text-align: center;
  margin-top: 0vh;
  font-weight: normal;
  font-size: 2vh;
  color: #0d101c;
  font-family: Helvetica, Arial, Courier;
}

.banner {
  height: 5vh;
  width: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  align-items: center;
  grid-template-columns: 1fr 5fr 1fr;
  grid-template-rows: 1fr;
  border-bottom: thin solid lightgray;
  margin-top: 0vh;
  margin-bottom: 2vh;
}

.container {
  width: 39vh;
  margin: auto;
  display: grid;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
  grid-gap: 1vh;
}

.sixline {
  height: 48vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.cell {
  display: flex;
  background: gray;
  color: white;
  user-select: none;
  font-size: 4vh;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 7vh;
  height: 7vh;
}

.celltext {
  display: flex;
  background: lightgray;
  width: 100%;
  height: 100%;
  line-height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  border: none;
  color: white;
  font-size: 4vh;
  color: transparent;
  text-shadow: 0 0 0 white;
}

celltext:focus {
  outline: thin red solid;
}

.actions {
  height: 5vh;
  width: 44vh;
  margin: auto;
  display: grid;
  grid-gap: 1vh;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2vh;
  margin-bottom: 0vh;
}

.button_container {
  display: inline-block;
  width: 20vh;
}

.info {
  height: 5vh;
  width: 44vh;
  font-size: 2vh;
  margin: auto;
  display: grid;
  justify-content: center;
  align-content: center;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin-top: 2vh;
  margin-bottom: 0vh;
}

.button {
  background-color: #af4c86;
  border: none;
  color: white;
  width: 12vh;
  padding: 1vh;
  margin: 0vh;
  text-align: center;
  text-decoration: none;
  font-size: 2vh;
  border-radius: 1vh;
}

#message {
  width: 100%;
  text-align: center;
  margin-top: 0vh;
  margin-bottom: 0vh;
}

.keyboard {
  width: 44.5vh;
  margin: auto;
  display: grid;
  justify-content: center;
  align-content: center;
  align-items: center;
  justify-items: center;
  grid-gap: 0.5vh;
}

.keyrow-1 {
  height: 4vh;
  width: 44.5vh;
  margin-top: 0.5vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.keyrow-2 {
  height: 4vh;
  width: 40vh;
  margin-top: 0.5vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.keyrow-3 {
  height: 4vh;
  width: 35.5vh;
  margin-top: 0.5vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}

.keyrow{
  display: flex;
  background: gray;
  color: white;
  user-select: none;
  font-size: 5vh;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 4vh;
  height: 4vh;
}

.key {
  display: flex;
  background: lightgray;
  width: 100%;
  height: 100%;
  line-height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  border: none;
  color: white;
  font-size: 2vh;
  color: transparent;
  text-shadow: 0 0 0 black;
}