@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}
:root {
  --color-background: #000119;
  --stroke-width: calc(2em / 16);
  --font-size: 30px;
  --font-weight: 700;
  --letter-spacing: calc(1em / 8);
}

* {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #1b1b32;
  font-family: Prompt, sans-serif;
  margin: 0;
}

header {
  width: 100%;
  background-color: #0a0a23;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
z-index: 999;
}

header h1 {
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(to right, #5a0f8b, #5a0f8b, #5a0f8b, #5a0f8b);
  color: #fff;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  letter-spacing: var(--letter-spacing);
  padding: calc(--stroke-width / 2);
  -webkit-text-stroke-color: transparent;
  -webkit-text-stroke-width: var(--stroke-width);
  z-index: 999;
}

#logo {
  width: max(100px, 18vw);
  background-color: #0a0a23;
  aspect-ratio: 35/4;
  padding: 0.4rem;
}

img{
  max-width: 50%;
  display: block;
  
}

main {
  padding-top: 50px;
}

section {
  width: 80%;
  margin: 0 auto 10px auto;
  max-width: 700px;
}

h1,
h2 {
  font-family: "prompt", sans-serif;
}

h2 {
  margin: 0px;
  padding-top: 30px;
}



.question-block {
  text-align: left;
  display: block;
  width: 100%;
  margin-top: 20px;
  padding-top: 5px;
}

p {
  margin-top: 5px;
  padding-left: 1px;
  font-size: 20px;
}

.question {
  border: none;
  padding-bottom: 0;
}

button {
  background-color: #4CAF50; /* Green background */
  color: #fff; /* White text */
  padding: 10px 20px; /* Some padding */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 18px;
  transition: 0.3s;
}

.navigate a {
  background-color: lightgray; /* Green background */
  color: #fff; /* White text */
  padding: 10px 20px; /* Some padding */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  text-decoration: none;
  transition: 0.3s;
}

button:hover, .navigate a:hover {
  background-color: #3e8e41; /* Darker green on hover */
  padding: 13px 23px;
}

input{
  margin-bottom: 10px;
}

label:hover {
  cursor: pointer;
}

.underline {
  text-decoration: underline;
}

.italic{
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#result {
  font-family: Prompt;
  position: fixed;
  font-weight: 700;
  top: 0;
  right: 0;
  color: yellow;
  z-index: 999;
}

.all__heading {
  background-color: #0a0a23;
  margin-top: 50px;
  color: #f1be32;
  text-align: center;
  padding: 20px 0;
}

.sub-heading {
  font-family: "Martian Mono", monospace;
  text-align: center;
}

#submitBtn{
  pointer-events: none;
  background-color: lightgray;
}
.none{
  pointer-events: none;
  background-color: lightgray;
}

.sub-heading p {
  font-size: 18px;
  font-style: italic;
  padding-top: 30px;
}

footer {
  padding-block: 30px;
  background-color: #f8f8f8;
  color: #555;
  border-top: 3px solid #e7e7e7;
  text-align: center;
  max-width: 100%;
  position: relative;
  bottom: 0;
  p{
      font-size: 16px;
  }
}



input[type=radio]:checked + label {
  font-weight: bold; /* Highlight the label when the radio button 
is selected */
  background-color: rgba(110, 110, 252, 0.3764705882);
  border-radius: 10px;
  color: #007BFF;
  padding: 5px;
}/*# sourceMappingURL=Science-style.css.map */