  /* Main container styles */
  .main-page-buttons-container {
  	container-type: inline-size; /* Enables container queries */
  }
  
  .main-page-buttons {
    display: grid;
    gap: 1em;
    color: #004E64;
    text-align: center;
    margin-bottom: 0;
  }

  /* Default styles for grid items */
  .main-page-buttons .main-page-button {
    display: flex;
    align-items: center;
    border: 2px solid #004E64;
    background: #ecedee;
    border-radius: 3%;
    margin-bottom: 0;
    color: #004E64;
    font-weight: bold;
    line-height: normal;
  }

  .main-page-buttons .main-page-button i {
    font-size: 2em;
  }

  .main-page-buttons .main-page-button a {
    font-weight: bold;
    text-decoration: none;
    color: #ED1C26;
    box-shadow: none !important;
  }  
  .main-page-buttons .main-page-button a:hover {
    text-decoration: underline;
    box-shadow: none !important;
  }
  
  /* Container query: Narrow layouts
  /* cards will be a single column, stacked
  /* contents will be aligned in a row 
  */
  @container (max-width: 699px) {
    .main-page-buttons {
      grid-template-columns: 1fr;
    }
    .main-page-button {
    	flex-direction: row;
	    justify-content: flex-start;
    	padding: 20px 10px;
    	gap: 5px;
    }
    .main-page-button i {
    	margin: 0 8px;
    }
  }
  
  /* Container query: Wide layouts
  /* cards will be in 3 columns, a single row
  /* contents will be stacked in a column 
  */
  @container (min-width: 700px) {
    .main-page-buttons {
      grid-template-columns: repeat(3, 1fr);
    }
    .main-page-button {
	    flex-direction: column;
	    justify-content: center;
	    padding: 60px 40px;
	    gap: 8px;
    }
    .main-page-button i {
    	margin: 0 0 8px 0;
    }
  }