@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap'); *{ margin: 0; } body { font-family: "Lato", sans-serif; } header{ width:100%; background-image: url('restauracja.jpg'); background-size:cover; background-attachment:fixed; height:800px; } nav{ display: flex; justify-content: flex-end; } .menu-link{ font-size: 35px; font-weight:500; text-decoration:none; color:white; padding:14px 20px; border-bottom:2px solid transparent; transition-duration: 0.6s; } .menu-link:hover { border-bottom: 2px solid #ff5805; } @media screen and (max-width: 768px) { nav { flex-direction:column; align-items: flex-end } } h1{ margin:100px 0px; font-size:35px; text-align:center; width:100%; } h2{ text-align:center; margin-top:10px; } .kontener{ display:flex; justify-content:space-around; text-align:center; flex-wrap:wrap; } .info{ margin:30px; width:200px; height:200px; border-radius:150px; } .potrawa{ flex:1; } p{ padding:0px 20px 0px 20px; } .zdj-galeria{ margin-top:10px; width:400px; height:200px; } .zdj-galeria:hover{ transform: scale(1.2,1.2); transition-duration: 1s; }