@import url('https://fonts.googleapis.com/css?family=Lato:400,900&display=swap'); * { margin: 0;/* domyślnie przeglądarka ma ustawione marginesy, zerujemy wszystkie*/ } body{ font-family: 'Lato', sans-serif; } header{ width:100%; background-image:url('tlo_restauracja.jpg'); background-size:cover; background-attachment:fixed; height:800px; } nav{ display:flex; justify-content:flex-end; } .menu-link{ font-size: 25px; color:white; padding:14px 20px; font-weight:500; text-decoration:none; } /*Dla małych urządzeń*/ @media screen and (max-width: 768px){ nav{ flex-direction: column; align-items:flex-end; } } h1{ text-align:center; font-size:35px; }