<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  background-color: rgb(247, 197, 205);
  background-image: url("../background_flower.png");
}

.container {
  max-width: 1065px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  margin: auto;  
}

.header {
  background-color: rgb(243, 165, 187);
  background-image: url("../cserepes_menu_ures.png");
  background-repeat: no-repeat;
  background-size:cover;
  background-position: right;
  padding: 10px;
  height: 100px;
  display: flex;
  border-radius: 5px;
  box-shadow: 5px 5px 5px rgb(189, 153, 172);
}

.header img {
  width: auto;
  height: 100px;
}

.header h1 {
  margin: 50 40 auto 40;
  color: rgb(243, 165, 187);
  text-shadow: 5px 5px 5px black;
}

.coloumn {
  
  min-height: 350px;
  margin-top: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.coloumn a {
  text-decoration: none;
  color: black;
}

.full-img {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.full-img img {
    width: 90%;
    max-width: 700px;
}
  
.full-img span {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.cardsheader {
  display: none;
  background-color: rgb(247, 197, 205);
  margin-top: 10px;
  padding: 10px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 300px;  
  max-width: 260px;
  background-color: rgb(243, 165, 187);
  margin: 20px;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 5px 5px 5px rgb(189, 153, 172);
}

.card img {
  margin: 10px;
  max-width: 240px;
  box-shadow: 5px 5px 5px rgb(189, 153, 172);
  border-radius: 5px;
}

.card img:hover {
  cursor: zoom-in;
}

.leir {
  display: flex;
  flex-direction: column;
  margin: 10px;
  padding: 5px;
  min-height: 300px;
  background-color: rgb(247, 197, 205);
  text-align: center;
}

.leir a {
  text-decoration: none;
  color: black;
}

.button {
  background-color: rgb(142, 142, 226);
  color: white;
  width: 80px;
  padding: 10px;
  margin: -30px auto 0 auto;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background-color: rgb(55, 82, 235);
}

.footer {
  background-color: rgb(247, 197, 205);
  display: inline-flex;
}

.footer p {
  padding: 10px;
  margin: auto;
}

.footer-content {
  display: inline-flex;
  margin: auto;
  text-decoration: none;
}

.footer-content a {
  text-decoration: none;
  color: black;
}

.social img {
  width: 30px;
  height: 30px;
  margin: 10px;
}

@media screen and (max-width: 992px) {
  
  .coloumn {
    background-image: url("../background_flower.png");
  }

  .header {
    background-color: rgb(243, 165, 187);
    padding: 10px;
    height: 100px;
    display: flex;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
  }

  .header h1{
    text-align: center;
  }

  .card.leir {
    display: flex;
    height: 320px;
  }
  
    .card {
    display: flex;
    min-height: 130px;
    min-width: 260px;
    background-color: rgb(243, 165, 187);
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
    align-items: center;
  }

  .card img {
    margin: 10px;
    max-width: 240px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
    border-radius: 5px;
  }

  .footer {
    display: inline-block;
    flex-direction: row;
    text-align: center;
  }

  .footer-content {
    display: inline-block;
    margin: auto;
    text-decoration: none;
    text-align: center;
  }
  
  .footer-content a {
    text-decoration: none;
    color: black;
  }
  
  .social img {
    width: 30px;
    height: 30px;
    margin: 10px;
  }
}

@media screen and (max-width: 600px) {
  
  .coloumn {
    background-image: url("../background_flower.png");
  }

  .card {
    display: flex;
    min-height: 130px;
    min-width: 300px;
    background-color: rgb(243, 165, 187);
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
    align-items: center;
  }

  .card img {
    margin: 10px;
    max-width: 280px;
    box-shadow: 5px 5px 5px rgb(189, 153, 172);
    border-radius: 5px;
  }
  
  .footer {
    display: inline-block;
    flex-direction: row;
    text-align: center;
  }

  .footer p {
    padding: 10px;
    margin: auto;
  }

  .footer-content {
    display: inline-block;
    flex-direction:row;
    margin: auto;
    text-decoration: none;
  }

  .footer-content a {
    text-decoration: none;
    color: black;
  }

  .social img {
    width: 30px;
    height: 30px;
    margin: auto;
  }
}</pre></body></html>