@import url('https://fonts.googleapis.com/css2?family=Glass+Antiqua&family=Honk:MORF@15&display=swap');
*{
margin: 0;
}


body {
  font-family: "Glass Antiqua", cursive;
    font-weight: 500;
    font-style: normal;

}

h1 {
  color: #333;
}
header{
width: 100%;
background-image: url(tlo.png);
background-size: cover;
background-attachment: fixed;
height: 1000px;
background-position: center bottom;
}
nav{
display: flex;
justify-content: flex-end;

}
.menu-link {
font-size: 2rem;
text-decoration: none;
color: white;
padding: 14px 20px;
border-bottom: 4px solid transparent;
transition-duration: 0.6s;

}
.menu-link:hover{
border-bottom: 4px solid gray;
}
@media screen and (max-width: 768px){
nav {
  flex-direction: column;
  align-items: flex-end;
}
}
h1{
margin: 10px 0px;
font-size: 2rem;
text-align: center;
width: 100%;
}
h2{
  text-align: center;
    width: 100%;
    padding: 0px 20px 0px 20px;
}
.kontener{
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
 
}
.info{
margin: 30px;
width: 200px;
height: 200px;
border-radius: 150px;
object-fit: cover;

}
.potrawa{
flex: 1;
background-color: burlywood;
}
#oferta{
background-color: burlywood;
margin: 0;
padding: 0;
}
.gallery{
max-width: 900px;
margin: 30px auto;
padding: 1rem;

}
.main-image{
width: 100%;
height: 55vh;
max-height: 500px;
min-height: 220px;
object-fit: cover;
border-radius: 1rem;
}
.thumbnails{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}
.thumbnails img{
width: 100%;
height: 80px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
}