
*{
        margin: 0;
        padding: 0;
      }

div.banner{
        height: 25%;
        background-color:white;
        color: hsl(0, 60%, 4%);
        margin: 0;
        text-align: center;
    }

    .footer{
      background-color: black;
      width: 100%;
      display: grid;
      grid-template-columns: auto;
      padding: 5px;
      border-bottom: 35px;
      left: 0;
      bottom: 0;
    }

    .footertext1{
      text-align: left;
      color: aliceblue;
      font: 1em sans-serif;
      grid-column: 1;
    }
    
 .footertext2{
   text-align: center;
      color: aliceblue;
      font: 1em sans-serif;
      grid-column: 2;
    }
     .footertext3{
      
      text-align: right;
      color: aliceblue;
      font: 1em sans-serif;
      grid-column: 3;
    }


