@import url('https://fonts.googleapis.com/css2?family=Matemasie&display=swap');

* {
  margin: 0;
}

body {
  font-family: "Matemasie", sans-serif;
    font-weight: 400;
    font-style: normal;
  padding: 10px;
  background-color: #f5f5f5;
}

h1 {
  color: #333;
}

header {
  width: 100%;
  background-image: url(ai/generate-a-restaurant-without-pe.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: #f5f5f5;
  padding: 14px 20px;
  border-bottom: 2px solid transparent;
  transition-duration: 0.6s;
}
.menu-link:hover {
  border-bottom: 2px solif red;
}
@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: space-around;
  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;
  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;
}























