
body {
  font-size: 1.05rem;
  background-color: #ffffff;
  color: #2c2c2c; /* or any hex, rgb, or named color */
}

.option-img input[type="radio"] {
  display: none;
}

.option-img img.img-option {
  border: 4px solid transparent;
  border-radius: 10px;
  object-fit: cover;
  transition: border 0.2s ease;
}

.option-img input[type="radio"]:checked + img.img-option {
  border-color: black;
}

.caption {
  text-align: left;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/*make label cursor change*/
.option-img {
  cursor: pointer; /* makes the whole label clickable */
}



/*App Intro style*/
.big-lead {
  font-size: 1.8rem;
  font-weight: 100;
}


/*Style the questions - the labels*/
.question-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 100;
  font-size: 1.8rem; /* match .lead size */
  color: #212529;
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
  text-align: left;
}




/*Submit Button style*/
.circle-button {
  background-color: #000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
  max-width: 180px;
  max-height: 180px;
  min-width: 120px;
  min-height: 120px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
  margin: 2rem auto;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.circle-button:hover {
  background-color: #333;
  transform: scale(1.05);
}



@media (max-width: 400px) {
  .circle-button {
    font-size: 0.9rem;
    padding: 1rem;
  }
}



/* Make all links match the surrounding text color and styling */


/* Make all links consistently dark and styled */
a, a:visited, a:hover, a:active, a:focus {
  color: #2c2c2c !important;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}




