/* Index Page Styling */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f4f4;
    margin-top: 34px;
  }
  
  
  .title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .button-group {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .big-button {
    text-decoration: none;
    background-color: #4a90e2;
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    border-radius: 12px;
    transition: background-color 0.3s ease;
  }
  
  .big-button:hover {
    background-color: #357abd;
  }
  

  /* Listing Page styling */

  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
  }
  
  .title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
  }
  
  .button-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .num-button {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .num-button:hover {
    background-color: #357abd;
  }
  
  /* .start-btn{
    background-color: #357abd;
    color: white;
    width: 97px;
    height: 48px;
    border-radius: 6px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .start-btn:hover{
    background-color: #1e5790;
  } */

  /* Quiz Style */

  body {
    font-family: sans-serif;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    margin-top: 82px;
  }
  
  .quiz-container {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  
  input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #5c67f2;
    color: white;
    border: none;
    border-radius: 6px;
  }
  
  #result {
    margin-top: 10px;
    font-weight: bold;
  }
  
  #hiragana{
    margin-top: 10px;
  }