body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #F8F5FF; /* Pinky */
    display: grid;
    grid-template-rows: auto 1fr auto;
  }
  
  header {
    text-align: center;
  }
  
  main {
    display: flex;
    justify-content: space-between;
  }
  
  section {
    width: 45%; 
  }
  
  footer {
    text-align: center;
    min-height: 50px;
    background: white;
  }