body {
    margin: 0 ;
    font-family: Arial, sans-serif ;
 }
 
 

 header {
    position: fixed ;
    top : 0 ;
    width : 98% ;
    display: flex ;
    padding : 15px ;
    justify-content: space-between;
    align-items: center;
    background-color: beige;
 }

 nav {
    display: flex ;
    list-style: none ;
    gap: 20px ;
 }

 nav a {
    display : block ;
    text-decoration: none ;
    color: black ;
    font-weight: bold ;

 }

 nav a:hover {
    color: brown ;
 }
 picture img {
    height: 60px ;
    width: auto ;
    display : block ;

 }

 .bilder {
    display: flex ;
    gap: 40px;
    justify-content: center ;
 }
 
 .text {
    display: flex ;
    gap: 190px;
    justify-content: center ;
 }

 h1 {
    text-align: center ;
    margin-top: 100px ;
 }