/* Start of External CSS */

/* Sets background colour and font family */
body {
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    background-color: white;
    }

/* Sets the appearance of the buttons */
/* button {
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    transition-duration: 0.4s;
    outline-width: 0;
    padding: 6px 24px 6px 24px;
    border-radius: 10px;
    border: 1px coral;
    color: white;
    background-color: coral;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 160px;
    } */

    /* Sets the appearance of the buttons */
button {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 40px;
    margin: auto;
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    transition-duration: 0.4s;
    outline-width: 0;
    padding: 6px 24px 6px 24px;
    border-radius: 10px;
    border: 1px coral;
    color: white;
    background-color: coral;
    }
    
/* Sets the appearance of the buttons on hover */
button:hover {
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    background-color: whitesmoke;
    color: coral;
    display: block;
    }

/* Sets the appearance of the iOS button */
button.ios {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: auto;
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    transition-duration: 0.4s;
    outline-width: 0;
    padding: 6px 24px 6px 24px;
    border-radius: 10px;
    border: 1px #027FFF;
    color: white;
    background-color: #027FFF;
    }
  
  /* Sets the appearance of the iOS button on hover */
  button:hover.ios {
    background-color: whitesmoke;
    color: #027FFF;
    cursor: pointer;
    }

/* Sets the appearance of the iOS button */
button.iosAppStore {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-left: 0px;
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    transition-duration: 0.4s;
    outline-width: 0;
    padding: 6px 24px 6px 24px;
    border-radius: 10px;
    border: 1px #027FFF;
    color: white;
    background-color: #027FFF;
    }
  
  /* Sets the appearance of the iOS button on hover */
  button:hover.iosAppStore {
    background-color: whitesmoke;
    color: #027FFF;
    cursor: pointer;
    }

/* Sets the appearance of the JPB button */
button.jpb {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: auto;
    font-family: Andale Mono, Arial, Helvetica, sans-serif;
    text-decoration:none;
    transition-duration: 0.4s;
    outline-width: 0;
    padding: 6px 24px 6px 24px;
    border-radius: 10px;
    border: 1px #D7281E;
    color: white;
    background-color: #D7281E;
    }
  
  /* Sets the appearance of the JPB button on hover */
  button:hover.jpb {
    background-color: whitesmoke;
    color: #D7281E;
    cursor: pointer;
    }

/* Sets up the 2 button grid */
.buttonGrid2 {
    background-color: #ffffff;
    max-width: 600px;
    height: 50px;
    margin: auto;
    display: grid;
    row-gap: 10px;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    border-radius: 10px;
    }

/* Sets up the button grid */
.buttonGrid3 {
    background-color: #ffffff;
    width: 375px;
    height: 100px;
    margin: auto;
    display: grid;
    row-gap: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 33.3%);
    align-items: center;
    border-radius: 10px;
    }
    
    @media only screen and (orientation: landscape) {
    div.buttonGrid3 {
        background-color: #ffffff;
        width: 600px;
        height: 25px;
        margin: auto;
        display: grid;
        row-gap: 10px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        align-items: center;
        gap: 1em;
        border-radius: 10px;
        }
    }

/* Sets up the button grid */
.buttonGrid4 {
    background-color: #ffffff;
    width: 375px;
    height: 100px;
    margin: auto;
    display: grid;
    row-gap: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 25%);
    align-items: center;
    border-radius: 10px;
    }

@media only screen and (orientation: landscape) {
    div.buttonGrid4 {
        background-color: #ffffff;
        width: 800px;
        height: 25px;
        margin: auto;
        display: grid;
        row-gap: 10px;
        grid-template-columns: repeat(4, 25%);
        grid-template-rows: 1fr;
        align-items: center;
        border-radius: 10px;
        }
    }

/* Sets up the button grid */
.buttonGrid6 {
    background-color: #ffffff;
    width: 375px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  
  /* Sets up the button grid */
  @media only screen and (orientation: landscape) {
    div.buttonGrid6 {
    background-color: #ffffff;
    width: 900px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  }

    /* Sets up the button grid */
.buttonGrid8 {
    background-color: #ffffff;
    width: 375px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  
  /* Sets up the button grid */
  @media only screen and (orientation: landscape) {
    div.buttonGrid8 {
    background-color: #ffffff;
    width: 900px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  }

      /* Sets up the button grid */
.buttonGrid9 {
    background-color: #ffffff;
    width: 375px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  
  /* Sets up the button grid */
  @media only screen and (orientation: landscape) {
    div.buttonGrid9 {
    background-color: #ffffff;
    width: 900px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  }

 /* Sets up the button grid */
 .iosGrid4 {
    background-color: #ffffff;
    width: 375px;
    height: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  
  /* Sets up the button grid */
  @media only screen and (orientation: landscape) {
    div.iosGrid4 {
    background-color: #ffffff;
    width: 900px;
    height: 50px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    gap: 1em;
    border-radius: 10px;
    }
  }


.card1 {
    display: none;
    width: 162px;
    height: 287px;
    margin: 20px;
}

@media only screen and (orientation: landscape) {
img.card1 {
    display: block;
    width: 162px;
    height: 287px;
    margin: 5px 20px 20px 20px;
    }
}

.card2 {
    display: block;
    width: 162px;
    height: 287px;
    margin: 20px;
}

@media only screen and (orientation: landscape) {
img.card2 {
    display: block;
    width: 162px;
    height: 287px;
    margin: 5px 20px 20px 20px;
    }
}

.card3 {
    display: none;
    width: 162px;
    height: 287px;
    margin: 20px;
}

@media only screen and (orientation: landscape) {
img.card3 {
    display: block;
    width: 162px;
    height: 287px;
    margin: 5px 20px 20px 20px;
    }    
}

.flexBlock {
    display: flex;
    justify-content: center;
}

h1 {
    text-align: center; 
    color: grey;
    }

h2.ios {
    text-align: center; 
    color:  #027FFF;
    }
    
h2.iosText{
    font-family: Helvetica, sans-serif;
    text-align: left;
    margin-top: 0;
    color: black;
    cursor: pointer;
}

h3.iosText{
    font-family: Helvetica, sans-serif;
    text-align: left;
    margin-top: 0;
    color: #8A8A8E;
    cursor: pointer;
}

h2,h3,h4,h5,h6 {
    text-align: center; 
    color: rgb(138, 183, 51);
    }

h4.privacy {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left; color: rgb(100, 100, 100);
    margin: 0px 0px 18px 0px;
}

.iosAppIcon{
    display: block;
      margin-left: auto;
      margin-right: auto;
      padding: 0px;
      width: 125px;
      height: 125px;
      cursor: pointer;
  }

@media only screen and (orientation: landscape) {
.iosAppIcon{
display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    width: 250px;
    height: 250px;
    cursor: pointer;
    }
}

ul {
    font-family: Arial, Helvetica, sans-serif;
}

p.privacy{
    font-family: Arial, Helvetica, sans-serif; 
}

.titleImage {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 325px;
    height: auto;
    }

@media only screen and (orientation: landscape) {
    img.titleImage {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 625px;
    height: auto;
    }
  }

.wrapper {
    width: 375px;
    margin-left: auto;
    margin-right: auto;
    }

@media only screen and (orientation: landscape) {
div.wrapper {
    width: 930px;
    margin-left: auto;
    margin-right: auto;
    }
}