


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
    
}

.archivo-black-regular {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

body {
    background: linear-gradient(to right, #2d07ff, #200093);
    color: #333;
}

.app {
    
    width: 90%;
    max-width: 800px;

    background-color: #fff;
    margin: 50px auto 0;
    border-radius: 10px;
    padding: 30px;
}

.quiz_title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.question {
    padding-top: 30px;
    padding-bottom: 10px;
    font-family: "Mulish", sans-serif;
    font-weight: 500;
    font-style: normal;
    
}

#followUpText {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.button {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: #fff;
    color: #000;
    margin: 8px 0;
    width: 100%;
    border: 2px solid #200093;  /* ✅ set width, style, and color all in one */
    border-radius: 9px;
    text-align: left;
    padding:10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}



.button:hover, .numbers:hover{
    color: #fff;
    background-color: #200093;
}

.button.active {
    color: #fff;
    background-color: #200093;
}

.submit {
    background-color: #fff;
    color: #000;
    margin: 20px auto;
    width: 40%;
    border: 1px solid rgb(75, 125, 0);  /* ✅ set width, style, and color all in one */
    border-radius: 5px;
    display: block;
    padding:10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    
}

.submit:hover {
    background-color:rgb(75, 125, 0);
    color: #fff;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);  /* ← shadow added here */
    translate: 0 -2px;



}

.next {
    background-color: #fff;
    color: #000;
    margin: 40px auto 20px auto;
    width: 40%;
    border: 1px solid rgb(75, 125, 0);  /* ✅ set width, style, and color all in one */
    border-radius: 5px;
    display: block;
    padding:10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.next:hover {
    background-color: #200093;
    color: #fff;
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);  /* ← shadow added here */
    translate: 0 -2px;
}

.numbers {
    background-color: #fff;
    color: #000;
    margin: 15px 2px;
    width: 19%;
    border: 2px solid #200093;  /* ✅ set width, style, and color all in one */
    border-radius: 5px;
    text-align: center;
    padding:10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* 🔁 Switch to 5 per row on smaller screens */
@media (max-width: 468px) {
    .numbers {
      width: 18%;
      margin: 15px 1px;
    }
  }

.numbers.active {
    color: #fff;
    background-color: #200093;
}

#reason {
    width: 100%; 
    padding:5px;
    resize: none;
    border: 2px solid #200093; 
    border-radius: 5px; 
    font-size: 16px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#thanksText {
    display: block;
    margin: 10px auto;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#continueText {
    text-align: center;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#endText {
    text-align: center;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.contactBtn {
    margin-top: 10px;
    position: relative;
    padding: 5px 8px;
    background-color: #bebebe;
    color: #fff;
    border: 1px solid #bebebe;
    border-radius: 9px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease;
  }
  
  .contactBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a6a6a6;
    z-index: 0;
    transition: left 0.4s ease;
  }
  
  .contactBtn:hover::before {
    left: 0;
  }
  
  .contactBtn span {
    position: relative;
    z-index: 1;
  }

  #welcomeText {
    display: block;
    text-align: center;
    margin: 10px auto;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  #startText {
    display: block;
    text-align: center;
    margin: 20px auto;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;

  }

  .correct {
    background-color: #4CAF50 !important; /* green */
    color: white;
  }
  
  .incorrect {
    background-color: #f44336 !important; /* red */
    color: white;
  }

  .button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  #warning {
    color:#0f0045;
    display:block;
    font-size: 14px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-style: normal;
  }


.submit, .next {
    background-color: #fff;
    color: #000;
    margin: 30px auto;
    width: 45%;
    border: 2px solid rgb(75, 125, 0);
    border-radius: 6px;
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.submit:hover, .next:hover {
    background-color: rgb(75, 125, 0);
    color: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}


  
  





