
@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
}

body {
  background-image: url("https://i.pinimg.com/736x/08/ca/ea/08caeaaf9403d3f72281c246c1692446.jpg");
  background-repeat: repeat;
  background-position: top left;
  background-size: auto;
  background-attachment: fixed;
  font-family: Verdana;
}

.main {
  width: 1000px;
  margin: 80px auto;

}



.header {
  text-align: center;
  padding: 10px;
  background: linear-gradient(to right, #F5EDF3, #fff, #FFF7FD, #F5EDF3);
  border-bottom: 2px solid #e0e0e0;
}


}

.side-image {
  position: fixed;
  top: 20%;
  transform: translateY(-50%);
  width: 480px; /* możesz dopasować */
  z-index: 1000; /* żeby były na wierzchu */
  animation: floating 2s ease-in-out infinite; /* TUTAJ */
}

.left {
  left: 0;
}

.right {
  right: 0;
}

.wrapper {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 15px;
  padding: 15px;
}

.left, .center, .right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.box {
  background: rgba(255,255,255,0.9);
  border: 2px dotted #ffcfe6;
  border-radius: 15px;
  padding: 10px;
  font-size: 0.85em;
}

.big {
  height: 200px;
}

a {
  color: #ff9acb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.frame-top, .frame-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  height: 70px; /* dostosuj do wysokości obrazka */
  background-image: url("https://i.imgur.com/ujeesc7.png");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
  z-index: 9999;
  pointer-events: none;
}

.frame-top {
  top: 0;
}

.frame-bottom {
  bottom: 0;
}



.footer {
  width: 1000px; /* tak jak .main */
  margin: 40px auto 20px auto; /* trochę przestrzeni od treści i od dołu */
  padding: 20px 0;
  
  background: linear-gradient(to right, #F5EDF3, #fff, #FFF7FD, #F5EDF3);
  border-top: 2px solid #e0e0e0;
  
  text-align: center;
  font-size: 0.9em;
  color: #b8759a;
  font-family: Verdana, sans-serif;
  user-select: none;
}

.footer-img {
  position: absolute;
  bottom: 0;
  right: 1;
  height: 350px; /* dopasuj rozmiar */
  user-select: none;
}

