* {
  margin: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body {

      font-family: "Oswald", sans-serif;
      font-weight: 400;
      font-style: normal;
}

header{
  width: 100%;
  background-image: url('ai/tlo.png');
  background-size: cover;
  
  background-attachment: fixed;
  height: 1000px;

}
nav{
  display: flex;
  justify-content: flex-end;
}
.menu-link {
  font-size: 2rem;
  text-decoration: none;
  color: rgb(255, 255, 255);
  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: 2rem;
  text-align: center;
  width: 100%;
}
h2{
  text-align: center;
  width: 100%;

}
.kontener{
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.info {
  margin: 30px;
  width: 200px;
  height: 200px;
  border-radius: 150px;
  object-fit: cover;
}
.potrawa {
  flex: 1;

}
p{
  padding: 0px 20px 0px 20px;
}


.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;
  gap: 12px;
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));

}
.thumbnails img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

