.titulo {
  position: relative;
  top: 15px;
  padding: 1px;
  width: 80vw;
  margin: auto;
}

.btn {
  border: 0;
  color: white;
  font-weight: bold;
  background-color: blue;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 0.5em;
}

.text-input {
  border-radius: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5em;
  width: 35%;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}



* {
  box-sizing: border-box;
}
body {
  
  background: rgb(2,0,36);
background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(224,16,16,0.9841897218123726) 43%, rgba(0,212,255,1) 100%);
  color: #fff;
  font-family: Arial, Helvetica, Sans-Serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  margin: 0;
  overflow: hidden;
}
h1 {
  margin: 20px,0,0;
}
.contener-jogo {
  padding: 20px 30px;
  position: relative;
  margin: auto;
  height: 350;
  width: 450;

}
.contener-figura {
  position: relative ;
  fill: transparent;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  right:50%;
}
.parte-figura {
  display: none;
}
.worg-letter-conteiner {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.worg-letter-conteiner p {
  margin: 0 0 5px;
}
.worg-letter-conteiner span {
  font-size: 18px;
  
}
.word {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.letter {
  border-bottom: 3px solid #2890b9;
  display: inline-fex;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  height: 35px;
  width: 20px;
}
.poup-conteiner {
  background-color: rgba(0,0,0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup {
  background-color: #2980b9;
  border-radius: 5px;
  box-shadow: 0 15px 10px 3px rgba(0,0,0,0.1);
  padding: 10px;
  text-align: center;
}
.popup button {
  cursor: pointer;
  background-color: #fff;
  color: #2980b9;
  border: 0;
  margin-top: 10px;
  padding: 12px 20px;
  font-size: 16px;
}
.popup button:active {
  transform: scale(0.98);
}
.popup button:focus {
  outline: 0;
}
.conteiner-notificao {
  background-color: rgba(0,0,0,0.3);
  border-radius: 10px 10px 0 0;
  padding: 15px 20px;
  position: absolute;
  bottom: -50px;
  transition: transform 0.3s ease-in-out;
  display:none;
}
.conteiner-notificao p {
  margin: 0;
}
.conteiner-notificao.show {
  transform: translatey(-100px);
}
.erro{
  
 font-family: Sans-Serif ;
 padding: 1px;
}

#teclado {
  width: 40px;
  left: 50%;
}

#teclado fieldset {
  width: 300px;
  text-align: center;
  margin: 2px;
}
fieldset {
  margin: 5px;
}
.flex-container {
  display: flex;
  flex-wrap: nowrap;
  background-color: DodgerBlue;
  justify-content: center ;
  
}
.flex-container > div {
  margin: 10px;
}
.image{
  max-width: 40px;
  max-height:40px;
}


footer {
  position: absolute;
  bottom: 0;
  background-color: red;
  color: #FFF;
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  z-index: 0;
}