<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PSPad help for atribut : Ctrl + space" */
body {
    display: grid;
    max-width: auto;
    grid-template-columns: auto;
    grid-template-rows: auto;
    margin: auto;
    background: #FFF0BF;
    color: #66411C;
    
    }





header{
    font-family: Calibri, Arial, sans-serif;
    color: white;
    background-image: linear-gradient(yellow, orange);
    text-align: center;
    border: 5px solid #F37D00;
    color: #66411C
    } /*AltGr + N*/
/*************************************/ 
header{
grid-column: 1/2;
grid-row: 1/2;
font-family: Calibri, Arial, sans-serif;
    }
    
   
    
/*************************************/ 
nav{

grid-column: 1/2;
grid-row: 2/3;
font-family: Calibri, Arial, sans-serif;
font-size: large;
font-weight: bold;
color: #66411C;
background: orange;
border: 5px solid #F37D00;
padding: 10px 50px 10px 50px;


    }
    
nav a{
text-decoration: none;
border: 5px outset white;
background: grey;
}

    
 nav a:hover{
 color: white;
background: lightblue;
border: 5px outset white;

 
 }   
    
nav a:active{
color: white;
background: orange;
border: 5px outset white;
} 


/*************************************/ 
section{
grid-column: 1/2;
grid-row: 3/4;

    }
    
    
    
    
/*************************************/ 
footer{
    font-family: Calibri, Arial, sans-serif;
    grid-column: 1/2;
    grid-row: 4/5;
    background-image: linear-gradient(yellow, orange);
  border: 5px solid #F37D00;
    font-family: Calibri, Arial, sans-serif;
    color: #66411C; 
    text-align: center; 
    }




/* CSS Document */
</pre></body></html>