body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #F8F5FF; /* Pinky */
    display: grid;
    grid-template-rows: auto 1fr auto;
    text-align: center;
    list-style-position: inside; /* wowie thanks stackoverflow*/
  }

  li{
    margin-bottom: 10px;
  }
  
  main {
    display: flex;
    justify-content: space-between;
  }
  
  section {
    width: 45%; 
  }

  #page-container {
    position: relative;
    min-height: 100vh;
  }
  
#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}


#footer {
  text-align: center;
  min-height: 50px;
  background: white;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.5rem;            /* Footer height */
}