body{
  user-select: none;
  margin: 0px;
  background-color: #222222; 
  display: flex;
  font-family: "Changa One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sideColumn{
  width: 100%;
  background-color: red;
  height: 0px;
}

.gameColumnWrapper {
  height: 0px;
}

.gameColumn{
  width: 475px;
  min-width: 475px;
  overflow: hidden;
}

#roscoContainer {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 23px;
  color: whitesmoke;
}

.letra {
  user-select: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid black;
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  transition: transform 0.2s linear;
}

#roscoLetters{
  height: 0px;
  width: 0px;
  transition: transform 0.2s linear;
  position: absolute;
  top: 250px;
  left: 238px;
}

.pista {
  text-align: center;
  position: absolute;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#timer { 
  margin: auto;
  background-color: whitesmoke;
  margin-bottom: 0px;
  width: 30%;
  margin-top: 85px;
  border: 2px solid black;
  border-radius: 12px 12px;
  color: black;
}

#empiezaContiene { 
  margin-bottom: 5px; 
margin-top: 10px;
}

#textoDeLaPista {
  margin-bottom: 10px;
  margin: auto;
}

#respuestaRevelada {
  width: 300px;
  margin: auto;
}

#specialButons{
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 25px;
}

#textoDeLaPista {
  width: 350px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
}

@media screen and (max-width: 500px) {
  .gameColumnWrapper {
    transform: scale(0.80) translateX(-50%);
    transform-origin: top left;
    position: relative;
    left: 50%;
    margin-top: 15px;
    height: 0px;
  }
}


#box {
  box-sizing: border-box;
  width: 100%;
  margin-top: 25px;
  height: 36px;
  border: 2px solid #000000;
  background-color: whitesmoke;
  font-size: 1.5rem;
  justify-content: center;
  text-align: center;
  align-content: center;
  color: rgb(0, 0, 0);
}

.keyboard {
  margin-top: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.row1 {
  display: grid;
  grid-template-columns: repeat(10, 42px);
  gap: 5px;
}
.row3 {
  display: grid;
  gap: 5px;
  grid-template-columns: 65.5px repeat(7, 42px) 65.5px;
  width: fit-content;
}

.keyboard button {
    height: 55px;
    font-size: 25px;
    border: 0px solid rgb(255, 255, 255);
    border-radius: 25%;
    user-select: none;
    box-sizing: border-box;
    font-family: "Changa One", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 2px solid rgb(85, 85, 85);
    background-color: rgb(85, 85, 85);
    color: rgb(255, 255, 255);
}

.boton {
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  width: 50%;
  box-sizing: border-box;
  height: 38px;
  display: flex;
  border: 2px solid rgb(85, 85, 85);;
  background-color: rgb(85, 85, 85);
  justify-content: center;
  align-items: center;
  user-select: none;
  color: rgb(255, 255, 255);
  border-radius: 5px;
}

.keyboard button:hover, .boton:hover{
    border: 2px solid white;
}
.keyboard button:active, .boton:active{
    background-color: rgb(255, 255, 255);
    color: #3a3a3c;
}

#key_backspace, #key_enter{
  font-size: 17px;
  width: 100%;
  border-radius: 5px;
}





#endGameMsg {
  color: whitesmoke;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  background-color: rgb(33, 12, 54);
  top: 2.45%;
  left: 50%;
  flex-direction: column;
  width: 475px;
  height: 475px;
  border-radius: 50%;
  border: 1px solid rgb(0, 0, 0);
  transform: translateX(-50%);
  align-items: center;
  gap: 5px;
  display: none;
}

#endGameMsg h2{
  width: 100%;
  margin: 0px;
}

#eGElement1{
  padding-top: 123px;
  font-size: 2rem;
}
#eGElement1 span{
color: rgb(0, 255, 127);
}
#eGElement2{
  font-size: 2rem; 
}
#eGElement2 span{
color: rgb(255, 0, 0);
}
#eGElement3{
  font-size: 2rem;
  padding-bottom: 10px;
}
#eGElement3 span{
 color: white;
}
#eGElement4{
  font-size: 2rem;
}
#eGElement5{
  font-size: 2rem;
  color: black;
  background-color: whitesmoke;
  max-width: 50%;
  border-radius: 12px 12px;
  border: 2px solid black;
}