
body {

  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d61aeb;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #e30b07;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #e9a513;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #007bff;
}

main {
  text-align: center;
}

h1 {
  color: #4d07e3;
  font-size: xx-large;
  font-family: "Fugaz One", sans-serif;
  font-weight: 400;
}

.loader-text {
  font-size: 4em;
  text-align: center;
  color: transparent;
  background: linear-gradient(to right, #00f, #0ff, #f00);
  background-clip: text;
  -webkit-background-clip: text;
  animation: glitch 2s linear infinite 5s, laser 4s linear infinite 5s;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
  }
  40% {
    transform: translate(5px, -5px);
  }
  60% {
    transform: translate(-5px, 5px);
  }
  80% {
    transform: translate(5px, -5px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes laser {
  0% {
    text-shadow: 0 0 10px white;
  }
  50% {
    text-shadow: 0 0 30px white;
  }
  100% {
    text-shadow: 0 0 10px white;
  }
}

h2 {
  color: #ef0d0d;
  font-family: "Oleo Script Swash Caps", sans-serif;
  font-weight: 400;
}

h3 {
  color: #e9a513;
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  margin-bottom: -15px;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  height: auto;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.item {
  text-align: center;
}

.buy-button, .catalog-button, .imprint-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.buy-button {
  background-color: #4CAF50;
  color: white;
}

.buy-button:hover {
  background-color: #45a049;
}

.catalog-button {
  background-color: #ff5733;
  color: white;
}

.catalog-button:hover {
  background-color: #e54d27;
}

.imprint-button {
  background-color: #008CBA;
  color: white;
}

.imprint-button:hover {
  background-color: #005f6b;
}

.social-icons {
  text-align: center;
}

.social-icons a {
  margin: 0 10px;
}
.contact-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #0056b3;
}
.image-container {
  display: flex;
  justify-content: space-between;
  animation: move-and-rotate 10s linear infinite;
}

.image-container img {
  max-width: 100px; /* oder die gewünschte Breite */
  height: auto;
  transition: transform 0.5s ease;
}

@keyframes move-and-rotate {
  0%, 100% {
    transform: translateX(0) rotate(0);
  }
  30% {
    transform: translateX(30%) rotate(0); /* Bewegen Sie Bild 1 langsamer */
  }
  45% {
    transform: translateX(50%) rotate(180deg); /* Halten Sie die Position für 45% der Animation an */
  }
  50% {
    transform: translateX(50%) rotate(180deg); /* Halten Sie die Position für 5% der Animation an */
  }
  55% {
    transform: translateX(50%) rotate(180deg); /* Halten Sie die Position für 5% der Animation an */
  }
  100% {
    transform: translateX(100%) rotate(0); /* Bewegen Sie sich zurück zum Anfang */
  }
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.container {
  position: relative;
  width: 100px;
  height: 100px;
}

.rotating-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, yellow 25%, red 75%);
  animation: rotate 4s linear infinite;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: black;
  opacity: 0;
  animation: fade 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}


footer {
  text-align: center;
  padding: 10px;
  color: #140101;
  font-size: x-large;
  font-family: 'Times New Roman', Times, serif;
}