/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.button-group {
  display: flex;
  flex-direction: column;
    gap: 20px;
  width: 100vh;
  height: 20vh;
  font-size: 30px;
  border-radius: 12px;
  margin: 0 auto; /* Center horizontally */
  justify-content: center;
  align-items: center; /* Center buttons horizontally within the group */
}



.button-1 {
      flex-grow: 1;           /* Allow the button to grow */
      flex-basis: 200px;      /* Set a minimum width */
      padding: 20px 40px;     /* Add padding for size */
      font-size: 1.5rem;      /* Enlarge text */
      text-align: center;     /* Center text */
      background-color: #6B9572; /* Button color */
      color: white;           /* Text color */
      border: none;           /* Remove border */
      cursor: pointer;        /* Pointer cursor */
    }
    
    .button-2 {
      flex-grow: 1;           /* Allow the button to grow */
      flex-basis: 200px;      /* Set a minimum width */
      padding: 20px 40px;     /* Add padding for size */
      font-size: 1.5rem;      /* Enlarge text */
      text-align: center;     /* Center text */
      background-color: #6B9572; /* Button color */
      color: white;           /* Text color */
      border: none;           /* Remove border */
      cursor: pointer;        /* Pointer cursor */
    }