@font-face {
  font-family: 'Amatic';
  src: url('fonts/Amatic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Amatic', cursive, sans-serif;
  text-align: center;
  background: url('sky2.png') repeat-x;
  background-size: auto;
  animation: scrollBackground 20s linear infinite;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulseWidth {
  0%, 100% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(2);
    opacity: 0.7;
  }
}

.pulsate {
  display: block;
  margin: 0 auto;
  animation: pulse 2s infinite;
  width: 450px;
  height: auto;
}

.widther {
  display: block;
  margin: 0 auto;
  animation: pulseWidth 2s infinite;
  width: 225px;
  height: auto;
}

.side-banner {
  position: fixed;
  top: 0;
  width: 200px;
  height: 100vh;
  background-image: url('side.png');
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  z-index: 1000;
}

.side-banner.left {
  left: 0;
}

.side-banner.right {
  right: 0;
  transform: scaleX(-1);
}

main {
  margin-left: 150px;
  margin-right: 150px;
}

@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(240deg);
  }
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;       
  animation: hueShift 4s ease-in-out infinite alternate; 
}

.row-img {
  max-width: 100%;
  width: 300px;
  height: auto;
  animation: hueShift 4s ease-in-out infinite alternate;
}