
/* On smaller screens, decrease text size */
@media only screen and (max-width: 60em) {
    
    body {
        max-width: 40vw;
        margin: 0 auto;
        background-color: #05fafa24;
        padding: 0em;
      }
    
      .grid-continer {
        display: flex;
        flex-direction: column;
        place-content: center;
      }
    
      img {
        width: 55vw;
        padding-top: 10px;
        padding-bottom: 10px;
      }
    
      .text {
        font-size: 2.7vw;
        position: relative;
        bottom: calc(1.5em + 2vw);
        text-align: center;
      }
    
      /* Number text (1/3 etc) */
      #numbertext {
        font-size: 2vw;
        padding: 8px 12px;
        color: #05fae6;
        -webkit-text-stroke: 0.8px rgb(8, 131, 246);
        position: relative;
        bottom: calc(0.8em + 0.8vw);
        text-align: center;
      }
    
      /* Progress Bar */
    
      #myProgress {
        width: 52vw;
        position: relative;
        bottom: calc(1em + 2vw);
      }
    
      /* Progress Bar */
    
      #myBar {
    
        height: 10px;
        /* background: #04AA6D; */
        text-align: center;
        line-height: 30px;
        color: white;
        position: absolute;
      }
    
      .table-wrapper {
        display: grid;
        place-content: center;
      }
    
      table {
        border: 1px solid #606c38;
        background-color: #eeeeee;
        width: 90%;
        text-align: center;
        font-family: var(--heading-font);
        border-collapse: collapse;
        margin-left: auto;
        margin-right: auto;
      }
    
      table td,
      table th {
        border: 1px solid #aaaaaa;
        padding: 3px 2px;
      }
    
      table tbody td {
        font-size: 13px;
        font-family: var(--heading-font);
      }
    
      table thead {
        background: #606c38;
        border-bottom: 2px solid #444444;
      }
    
      table thead th {
        font-size: 15px;
        font-weight: bold;
        color: #ffffff;
        border-left: 2px solid #d0e4f5;
      }
    
      table thead th:first-child {
        border-left: none;
      }

  }
  
  