* {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
}

a,
a:visited {
  color: #007bff;
}

  a:hover {
    color: #0056b3;
  }

nav ul {
  list-style-type: none;
  padding: 0;
}

  nav ul li {
    display: inline;
    margin: 0 5px;
  }

main {
  width: 80%;
  margin: 0 auto;
}

.header-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

form{
text-align: left;
}

.question-container{
    margin-top: 15px;
}

.question-text {
  font-family: 'Oswald', sans-serif;
  color: #2e2e2e;
  font-weight: normal; 
}

.answer-option {
  color: #3c3c3c;
  font-weight: 200;
}

/* Styling the submit container */
.submit-container {
  margin-top: 1rem;
  margin-left: 50%;
  text-align: center; /* Centers the button */
  background-color: #F25D22;
  display: inline-block;
  border-radius: 5px;
}

/* Submit button styling */
.submit-btn {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}

.submit-btn:hover {
  background-color: #ff8f00;
}

input.answer-input {
  color: #f25D22;
}

input[type="radio"]:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: #f25D22;
}

input[type="radio"]:hover {
  cursor: pointer; /* Optional: change cursor to pointer */
}

input[type="checkbox"]:focus {
  outline-width: 2px;
  outline-style: solid;
  outline-color: #f25D22;
}

input[type="checkbox"]:hover {
  cursor: pointer; /* Optional: change cursor to pointer */
}

.question-number{
    
}
