* {
    padding: 0;
  }
  
  body {
    color: #111111;
    font-family: sans-serif;
    --default-font-size: 16px;
    font-size: var(--default-font-size);
    -webkit-text-size-adjust : 100%;
    background: white;
  }
  
  h1 {
    margin-left: 5%;
  }
  
  h2 {
    margin-top: 56px;
  }
  
  #banner {
    margin: 60px auto 0 auto;
  }
  
  a {
    color: #111111;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
  }
  
  footer {
    margin-top: 10px;
    margin-bottom: 66px;
    font-family: "HelveticaNeue-Light", sans-serif;
    font-size: 13px;
  }
  
  .mandala-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .mandala {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: var(--cell-spacing);
    position: relative;
  }
  
  .mandala-cell {
    box-sizing: border-box;
    border-style: solid;
    border-color: white;
    /* background-color: rgba(255, 255, 255, 0.5); */
    overflow: hidden ;
    max-width: 300px;
    max-height: 300px;
    --mandala-size: calc(100vmin - var(--minimum-inset-to-screen) * 2);
    --size: calc( ( var(--mandala-size) - var(--cell-spacing) * 2 ) / 3 );
    width: var(--size);
    height: var(--size);
    
  }
  
  .parent > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .parent {
    transition: background-color 0.2s 0s ease-out;
  }
  
  .parent:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
  
  .parent:not(.appstore) > a > img {
    display: block;
    --edge-cell-padding: calc(var(--size) * 0.2);
    --edge-cell-img-max-size: calc(100% - var(--edge-cell-padding) * 2);
    max-width: var(--edge-cell-img-max-size);
    max-height: var(--edge-cell-img-max-size);
  }
  
  #copyright {
    text-align: center;
    font-size: 0.7em;
  }
  
  #main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  #title {
    text-align: left;
  }

  #story {
    margin-left: 7%;
    text-align: left;
  }

  #greetings p {
    margin-bottom: 1em;
  }
  

  html:before,
  html:after,
  body:before,
  body:after {
    content: "";
    background: #111111;
    position: fixed;
    display: block;
    z-index: 1;
    position: fixed;	
  }

html:before {
  height: 10px; 
  width:100%;
  left: 0;
  top: 0;
  position: fixed;	
}

html:after {
  width: 10px;
  height: 100%;
  right: 0;
  top: 0;
  position: fixed;	
}

body:before {
  height: 10px;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;	
}

body:after {
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;	
}