/* Shawn Miller */

body {
   font-family: Arial, Helvetica, sans-serif;
   background-color: #f2f2f2;
   margin: 0;
   padding: 0;
   color: #222;
}

header {
   background-color: #101820;
   color: #ffb612;
   text-align: center;
   padding: 25px;
   border-bottom: 6px solid #ffb612;
}

header p {
   color: white;
}

main {
   max-width: 800px;
   margin: 30px auto;
   background-color: white;
   padding: 25px;
   border-radius: 10px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

h1,
h2 {
   margin-top: 0;
}

.account-box label {
   display: block;
   font-weight: bold;
   margin-top: 15px;
}

.account-box input {
   display: block;
   width: 100%;
   box-sizing: border-box;
   margin-top: 5px;
   padding: 12px;
   font-size: 16px;
   border: 2px solid #eeeeee;
   border-radius: 6px;
}

.account-box input:focus {
   outline: none;
   border-color: #ffb612;
}

#createAccountButton {
   background-color: #ffb612;
   color: #101820;
   border: none;
   padding: 12px 18px;
   border-radius: 6px;
   cursor: pointer;
   font-size: 16px;
   font-weight: bold;
   margin-top: 15px;
}

#createAccountButton:hover {
   background-color: #d99b00;
}

#accountMessage {
   font-weight: bold;
   margin-top: 15px;
   color: #c62828;
}

.question-box {
   margin-bottom: 25px;
}

#questionText {
   font-size: 20px;
   font-weight: bold;
}

.answers button {
   display: block;
   width: 100%;
   margin: 10px 0;
   padding: 12px;
   font-size: 16px;
   border: none;
   border-radius: 6px;
   background-color: #eeeeee;
   color: #101820;
   cursor: pointer;
}

.answers button:hover {
   background-color: #ffec9e;
}

.correct {
   background-color: #2e7d32 !important;
   color: white !important;
}

.incorrect {
   background-color: #c62828 !important;
   color: white !important;
}

#nextButton,
#restartButton {
   background-color: #ffb612;
   color: #101820;
   border: none;
   padding: 12px 18px;
   border-radius: 6px;
   cursor: pointer;
   font-size: 16px;
   font-weight: bold;
   margin-top: 15px;
}

#nextButton:hover,
#restartButton:hover {
   background-color: #d99b00;
}

#message {
   font-weight: bold;
   margin-top: 15px;
}

#scoreBox {
   font-size: 18px;
   font-weight: bold;
}

#finalScore,
#rating {
   font-size: 18px;
   font-weight: bold;
}

.hidden {
   display: none;
}

footer {
   text-align: center;
   margin-top: 30px;
   color: #555;
}