body {
   font-family: Arial, sans-serif;
   padding: 20px;
   justify-content: center;
   display: flex;
   flex-direction: column;
   align-items: center;
   background: url("bg.png");
   background-repeat: no-repeat;
   background-size: 200%;
}

#container {
   display: flex;
   grid: 30px;
   flex-wrap: wrap;
   align-items: center;
   gap: 10px;
}

#container button {
   padding: 10px 15px;
   cursor: pointer;
   width: clamp(40px, 8vw, 80px);
   height: clamp(40px, 8vw, 80px);
   border-radius: 10px;
   border: none;
}

#container .default {
   font-size: 0px;
}

#container .correct {
   font-size: 0px;
   background-color: green;
}

#container .guessed {
   font-size: clamp(32px, 2vw, 40px);
   font-weight: bold;
   color: white;
   background-color: palevioletred;
}

.space {
   display: inline-block;
   width: clamp(40px, 8vw, 80px);
   height: 1px;
}

textarea {
   resize: none;
   width: clamp(40px, 8vw, 80px);
   height: clamp(40px, 8vw, 80px);
   font-size: clamp(24px, 2vw, 36px);
   text-align: center;
   margin: 10px;
}

.sendButton {
   height: clamp(40px, 8vw, 80px);
   width: clamp(80px, 8vw, 160px);
   margin: 10px;
}

#nemTalalt {
   color: red;
   font-size: clamp(24px, 2vw, 32px);
}

#nextButton {
   visibility: hidden;
}
