@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

body{
     font-family: "lobster", cursive;
    }

main{
     display: flex;  
    }

aside{
      box-sizing: border-box;
      background-color: #005;
      padding:  20px;
     }

section{
        box-sizing:  border-box;
        background-color: #acf;
        padding: 30px;
        padding-bottom: 60px;
       }

article p{
          color: #005;
          text-align:  justify;
          line-height:  1.8em;
          letter-spacing: 0.1em;
         }

ul{
   list-style-type: none;
  }

a{
  color: #acf;
  text-decoration: none;
 }

aside img{
          width: 100%;
         }

h3{
   text-align: center;
   color: green;
   padding: 30px;
  }

footer{
       background-color: #000;
       color: #fff;
       text-align: center;
       padding: 20px;
       font-size:  1.5em;
       position: fixed;
       bottom: 0px;
       width:  100%;
      }