@charset "UTF-8";
@import "../tailwind/tailwind.css";
@tailwind utilities;
footer {
  background-color: black;
  color: white;
}

.corner-border {
  position: relative;
  padding: 1rem;
  background: transparent;
}
.corner-border::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, #c9c8c9 0 40px, transparent 100%) top left, linear-gradient(to bottom, #c9c8c9 0 40px, transparent 100%) top left, linear-gradient(to left, #c9c8c9 0 40px, transparent 100%) top right, linear-gradient(to bottom, #c9c8c9 0 40px, transparent 100%) top right, linear-gradient(to right, #c9c8c9 0 40px, transparent 100%) bottom left, linear-gradient(to top, #c9c8c9 0 40px, transparent 100%) bottom left, linear-gradient(to left, #c9c8c9 0 40px, transparent 100%) bottom right, linear-gradient(to top, #c9c8c9 0 40px, transparent 100%) bottom right;
  background-size: 2px 40px, 40px 2px;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
}
.corner-border:hover::before {
  background-size: 2px 100%, 100% 2px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.marquee__item svg {
  height: 60px; /* steuert Bildgröße */
  width: auto;
  display: block;
}

/* Smooth Infinite Loop */
@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.btn-aesthetic {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  position: relative;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

/* Hover */
.btn-aesthetic:hover {
  color: #fe6604;
  border-color: #fe6604;
}

/* Click Feedback */
.btn-aesthetic:active {
  transform: scale(0.96);
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animate-blink {
  animation: blink 1s infinite;
}

@font-face {
  font-family: "Primary";
  src: url("../fonts/GCCODEXDemo-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Primary", sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
