body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh; /* Make body take up full viewport height */
    display: flex;
    flex-direction: column;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-grow: 1; /* Allow container to grow to fill remaining space */
  }
  
  .column {
    flex-basis: 48%; /* Adjust as needed */
  }
  
  .section {
    margin-bottom: 20px;
  }
  
  .button-section {
    text-align: center;
    margin-top: auto; /* Push button section to the bottom */
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #ddd;
  }
  
  .test-match-btn {
    background-color: #4CAF50;
    color: white;
  }
  
  .main-menu-btn {
    background-color: #008CBA;
    color: white;
  }