/* style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Comic Neue";
}

body {
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  margin: 0;
}
html {
  font-size: 62.5%;
}
.nav-container {
  margin-bottom: 10px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f4fe;
  padding: 16px 12rem;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-left {
  display: flex;
  align-items: center;
}
.arrow-left {
  margin-right: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}
.nav-left-text {
  font-weight: bold;
  color: #000000;
  font-size: 2rem;
  font-weight: 500;
}
.nav-right {
  display: flex;
  align-items: center;
}
.points-section {
  display: flex;
  align-items: center;
  margin-right: 1.6rem;
  font-size: 2rem;
  font-weight: 500;
}
.star-icon {
  margin-right: 0.6rem;
  font-size: 2rem;
  font-weight: 500;
}
.initial-icon img {
  width: 4.6rem;
  height: 4.6rem;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffdb5b;
  border-radius: 50%;
  font-weight: 600;
  color: #000000;
}
.quiz-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 600px;
  height: 726px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 16px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-bottom: 8px solid rgba(7, 117, 239, 1);
}

.back-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}
.quiz-header h2 {
  font-size: 1.8rem;
  color: #333;
}

.points {
  font-size: 1.4rem;
  color: #333;
}

.question-box {
  padding: 20px;
}

.question-box h3 {
  font-size: 1.8rem;
  color: rgba(253, 166, 50, 1);
  line-height: 25.08px;
  text-align: center;
  margin-bottom: 8px;
}
.question-count {
  width: 552px;
  height: 25px;
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 8px;
}
.question {
  font-size: 1.8rem;
  color: #ffb74d;
  font-weight: bold;
  margin-bottom: 16px;
}
.question-title {
  width: 552px;
  height: 63px;
  font-size: 1.6rem;
  background-color: rgba(255, 248, 238, 1);
  color: rgba(253, 166, 50, 1);
  border: 2px dashed rgba(253, 166, 50, 1);
  padding: 16px;

  border-radius: 8px;
  margin-bottom: 16px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.option {
  width: 552px;
  height: 82px;
  background-color: #f0f8ff;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.option:hover {
  background-color: #e3f2fd;
}

.navigation {
  gap: 32px;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background-color: #f9fafb;
  border-top: 1px solid #e0e0e0;
}

.nav-btn {
  background-color: #e0e0e0;
  color: #777;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-btn:not(:disabled):hover {
  background-color: #ffb74d;
  color: #fff;
}

.nav-btn:disabled {
  background-color: #f0f0f0;
  cursor: not-allowed;
}
