/* M - iPhone 11 */
@media only screen 

  and (max-device-width: 700px) {
    .mainTitle{
        position: fixed;
        white-space: nowrap;
        letter-spacing: 0.05em;
        left:50%;
        top:20%;
        bottom: 1rem;
        transform: translate(-50%,0);
        z-index: 20;
        font-size: 1.5em;
        text-align: center;
        z-index: 1;
    }

    .grid-container{
        position: fixed;
        width: 90%;
        left: 0;
        bottom: 0;
        margin: 0px 20px 20px 20px;
        font-size: 1em;
        letter-spacing: 0.05em;
        z-index: 2;
    
        display: grid;
        column-gap: 20px;
        grid-template-columns:auto;
    }
  }


/* iPad */
@media only screen 
  and (min-device-width: 701px)
  and (max-device-width: 1300px) {
    .mainTitle{
        position: fixed;
        white-space: nowrap;
        left:50%;
        top:45%;
        bottom: 1rem;
        transform: translate(-50%,0);
        z-index: 20;
        font-size: 3em;
        text-align: center;
        z-index: 1;
    }

    .grid-container{
        position: absolute;
        width: 95%;
        left: 0;
        bottom: 0;
        padding: 10px;
        font-size: 1em;
        letter-spacing: 0.05em;
        z-index: 2;
    
        display: grid;
        column-gap: 20px;
        grid-template-columns:25% 25% 20% 25%;
    }
  }