@font-face {
    font-family: 'Source Sans Pro';
    src: local('Source Sans Pro'),
         url('fonts/Source Sans Pro.woff2') format('woff2'),
         url('fonts/Source Sans Pro.woff') format('woff');    
  }
header {
        display: flex;
        background-color: #FAF0CA;
        padding: 10px;
        justify-content: space-between;
   
        align-items: center;
    
}  
a{
        text-decoration: none;
        color: black;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: bold;
      
      
      }
.logo {
    display: flex;
    justify-content: flex-end;

}

.logo :hover {
    width: 100px;
    height: 100px;
    transition: opacity 0.5s ease-in-out; 

}



body{
        text-align: center;
        font-family: 'Source Sans Pro', sans-serif;
        margin: 0;
        padding: 0;
}
footer {
        background-color: #F95738;
        color: white;
        padding: 10px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 12px;
        flex-wrap: wrap;
        text-align: center;
    }
    
    footer p {
        margin: 5px 0;
        color: white;
    }
    
    footer img {
        width: 22px;
        height: 22px;
        margin: 0 6px;
    }
   