.bigBlock {
  width: 100%;
  height: 100%;
  display: flex;
}

.element-quiz {
  min-height: 40%;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(8vw + 8vh);
}

.element-hint {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.line {
  border: 2px solid #ccc;
  width: 95%;
  background-color: #f7f6f0;
  margin: 10px;
  border-radius: 5px;
}

.wrong {
  display: flex;
  background-color: lightsalmon;
  height: 10%;
  justify-content: center;
  align-items: center;
  margin: 5px;
  width: auto;
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 10px;
}

.btnContainer {
  width: 100%;
  display: flex;
  background-color: rgb(255, 255, 255);
  /* justify-content: center;
    align-items: center; */
  /* transition: 1s linear; */
}

.inputBtns {
  margin: 4px;
  width: 60px;
  height: 30px;
  border-radius: 10%;
}
.active {
  background-color: #ffd312;
}

.hint-box {
  background-color: aqua;
  border: 1px solid black;
  width: 100%;
  height: 100%;
  display: flex;
  /* flex-wrap:wrap; */
  border: 1px solid black;
}
.red-ball {
  display: flex;
  width: 10%;
  height: 10%;
  background-color: red;
  border-radius: 50%;
  border: 1px solid black;
}
.blue-ball {
  display: flex;
  width: 10%;
  height: 10%;
  background-color: blue;
  border-radius: 50%;
  border: 1px solid black;
}
/* 메인 박스 안에 왼쪽 1번 박스 */
.smallBlock1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(2vw + 2vh);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.4em;
}
/* 메인 박스 안에 왼쪽 2번 박스 */
.smallBlock2 {
  width: 45%;
  display: flex;

  flex-direction: column;
  place-content: flex-between;
}

/* [답 입력 창]왼쪽 2번 박스 - 위에 상단 */
.element-input {
  height: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
}
.element-hint {
  margin: 10px;
  height: 100%;
  display: flex;
  overflow: hidden;
}
/* [버튼 입력 창]왼쪽 2번 박스 - 위에 상단 */

.element-button {
  height: 100%;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
}

table {
  border: 1px solid #a29f9f;
  border-collapse: collapse;
  border-radius: 10px;
  background-color: white;
  width: 100%;
  height:80%
}

td {
  transition: background-color 0.3s ease;
  padding: 0px;
  border: dotted 1px #ccc;
  text-align: center;
  vertical-align: middle;
  font-size: clamp(1vw, 3vw, 4vw);
  box-sizing: border-box;
  border:1px dotted #ccc;
}
.hint {
  width: 100%;
  padding: 0px;
  margin: 2px 0 0 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.makeBtns {
  font-size: 1.5rem;
  font-family: "Nanum Gothic", sans-serif;
}

.login {
  /* display:none; */
  font-size: "7px";
  align-items: end;
  justify-content: end;
}

a {
    color: white;      /* 텍스트 색상을 흰색으로 설정 */
    text-decoration: none;  /* 밑줄을 없앰 */
}
select{
    font-size: clamp(12px,1vw,20px);
}

 .btnsContainer {
            position:absolute;
            display:block;
            justify-self: center;
            align-items: center;
            bottom:22%;
            left:-380px;
            height:350px;
            width: 340px;
            padding:20px;
            border: 2px dotted gray;
            background-color: #f9f9f9;
            transition: all 0.6s ease-in;
        }
        .btnsContainer::after {
            content: "";
            width: 50px;
            height: 50px;
            border: 1px solid #ccc;
            background-color: green;
            position: absolute;
            right: -50px;
            top: 0;
        }


        
        .btnsContainer>button{
          padding:5px;
          font-size: 1.5vw;
          min-width: 3vw;
        }