<style>

.button-container {
    padding:0;
    margin: auto;
  }

.button-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
}

div.button-grid-item {
    background-color: #003366;
    height: 3.5em;
    padding:10px;
    margin: auto;
    width: 40%;
    text-align: center;
    display: grid;
    place-items: center;
    transition-duration: 0.4s;
    border-radius:5px;
}

.button-grid-item:hover {
    background-color: #3c518b;
    color: white;
  }

div.button-grid-item > a {
    color: #fefefe;
    font-size: 1.2em;
    font-weight:bold;
}

div.button-grid-item > a:hover {
    text-decoration: none;
    cursor: pointer;
}

.print-instruct {
    text-align: center;
    padding-top: 0;
}

@media only screen and (max-width: 1000px) {
    div.button-grid-item {
      width: 50%;
    }
  }

@media only screen and (max-width: 850px) {
    div.button-grid-item {
      height: 5em;
    }
  }

  @media only screen and (max-width: 600px) {
    div.button-grid-item {
      height: 5.5em;
    }
  }

  @media only screen and (max-width: 450px) {
    div.button-grid-item {
      width: 65%;
      /* font-size: 1em; */
    }

    /* div.button-grid-item > a {
        font-size: 1em;
    } */
  }

</style>