* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    background: linear-gradient(to bottom right, #f3e5f5, #f4d6b4);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    gap:25px;
  }
  
  #quiz {
    background-color: #ffffffee;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
  }

  #quiz img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

  #quiz .result-image {
  display: block;
  max-width: 300px;
  border-radius: 10px;
  margin: 20px auto;
}
  .question {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #8b4f7b;
  }
  
  .options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .option-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #f8f3f9;
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .option-container:hover {
    background-color: #e5acb6
  }
  
  .option-container label {
    cursor: pointer;
    font-size: 1rem;
    color: #4a148c;
    padding-left: 10px;
  }
  
  #next {
    background-color: #ab47bc;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 12px 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
  }
  
  #next:hover {
    background-color: #8e24aa;
  }
  
  #quiz h3 {
    font-size: 1.6rem;
    color: #6a1b9a;
    margin-bottom: 20px;
  }
  
  #quiz p {
    font-size: 1rem;
    color: #4a148c;
    line-height: 1.5;
  }
  