* {
  margin: 0;
  padding: 0;
}

.new-amsterdam-regular {
  font-family: "New Amsterdam", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.black-han-sans-regular {
  font-family: "Black Han Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/03_Typing_img1.avif);
}

.wrap {
  display: flex;

  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.contentsWrap {
  position: relative; /* 위치 기준을 설정합니다. */
  width: 500px;
  height: 590px;
  margin: 0 auto;
  position: relative;
  background-color: rgba(210, 180, 140, 0.495);
}

.word-display {
  margin-top: 3rem;
  font-size: 80px;
  color: white;
  text-align: center;
}

.word-input-box {
  margin-top: 3rem;
  text-align: center;
}

.word-input {
  padding: 0.5rem;
  width: 300px;
  text-align: center;
}

.word-input[disabled] {
  cursor: not-allowed; /* 비활성화 상태에서 커서 변경 */
}

.game-info {
  margin-top: 2rem;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: white;
}

.game-info > div:first-child {
  margin-bottom: 0.5em;
}

.game-info > span {
  font-size: 30px;
}

.button {
  width: 200px;
  height: 50px;
  background-color: tomato;
  border-radius: 20px;
  border: none;
  margin-top: 3rem;
  cursor: pointer;
  color: white;
  margin: 0 auto;
  margin-top: 3em;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translatex(-50%);
  font-size: 1em;
}

.loading {
  background: #ccc;
  cursor: not-allowed;
}

.bodyWrap {
  width: 650px;
  height: 590px;
  display: flex;
  margin: 0 auto;
  margin-top: 4em;
}

.logoBox-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 10px;
}

.logoBox {
  width: 140px;
  height: 140px;
  background-color: plum;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: end;
  transition: all 0.3s;
}

.logoBox:hover {
  transform: scale(1.05);
  box-shadow: 2px 3px 1px 1px rgba(108, 108, 108, 0.5);
  filter: brightness(0.7);
}

.logoBox > a {
  width: 100%;
  height: 100%;
  display: block;
}

.logoBox img {
  width: 100%;
  height: 100%;
}

.toastify {
  margin-top: 175px;
  margin-left: 10px;
}
