@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

*{
  margin: 0;
}

body {
  padding: 40px;
  background-color: #000000;
  font-weight: 400;
}

header{
  width: 100%;
  background-image: url('ai/image1.png');
  background-size: cover;
  background-attachment: fixed;
  height: 800px;
}

nav{
  display: flex;
  justify-content: flex-end;
}

.menu-link{
  font-size: 2rem;
  text-decoration: none;
  color: white;
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  transition-duration: 0,6s;
}

.menu-link:hover{
  border-bottom: 2px solid orange;
}

@media screen end (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: space-around;
  text-align: center;
  flex-wrap: wrap;
}

.info{
  margin: 30px;
  width: 200px;
  height: 200px;
  border-radius: 150px;
  object-fit: cover;
}

.potrawa{
  flex: 1;
  color: white;
}

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;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.thumbnails img{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}






















































