/*
  Name: R. Dhawtal
  Date: 24-9-25
  
  Mijn eerste CSS bestand.
*/


            header
             {
                background-color: rgba(0, 0, 109, 0.818);
                display: flex;
                margin: 0px;
                justify-content: flex-start;
                align-items: flex-end;
                font-size: 125%;
                font-weight: bold;
                
             }

             nav ul
             {
                display: flex;
                list-style: none;
             }
             a
             {
                color: rgb(193, 177, 7);
                text-decoration: none;
                text-align: center;
                font-size: 125%;
                font-weight: bold;
            
             }
             a:hover
             { 
                color: darkgreen;
             }

             h1
             {
                color: rgba(0, 0, 109, 0.818);
             }

             nav li
             {
                margin-left: 20px;
             }
             body
             {
                background-color: rgba(93, 93, 91, 0.43);
             }
             p
             {
               text-align: left;
             }
            
/* letterkleur van de titel(h1) aanpassen en de achtergrondkleur van de P */