@charset "utf-8";

* {
    box-sizing: border-box;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    width: 100vw;
  }
  
  .start,
  .quiz,
  .result {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .btn {
    background-color: #4caf50;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
  }
  button {
    /* background-color: #4caf50; */
    border: none;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: block;
  
  }
  
  .btn:hover {
    background-color: #3e8e41;
  }
  
  .hide {
    display: none;
  }
  
  .question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .answer-btn {
    background-color: #e7e7e7;
    border: none;
    border-radius: 4px;
    color: black;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
  }
  