@import url("https://fonts.cdnfonts.com/css/copyduck");

@font-face {
  font-family: 'Kren';
  src: url('../fonts/Kren.ttf') format('truetype'); /* путь от main.css до шрифта */
  font-weight: normal;
  font-style: normal;
}

/* Tailwind: кастомные переменные */
@layer theme {
  :root {
    --font-sans: 'Kren', ui-sans-serif, system-ui, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  }
}

/* Базовые стили Tailwind */
@layer base {
  body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    color: #ff9100;
    background-color: #090600;
  }
}



  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #fff;
    font-weight: 500;
  }
  img {
    max-width: 100%;
  }
  a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  input,
  textarea,
  button {
    outline: none;
    transition: all 0.3s ease-in-out;
  }
  input:focus,
  textarea:focus,
  button:focus {
    outline: none;
    border-color: #E99A29;
  }
  button {
    cursor: pointer;
  }
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
  }
@layer components {
  .overflow-x-auto::-webkit-scrollbar,
  .overflow-y-auto::-webkit-scrollbar {
    width: var(--scroll, 6px);
    height: var(--scroll, 6px);
  }
  .overflow-x-auto::-webkit-scrollbar-track,
  .overflow-y-auto::-webkit-scrollbar-track {
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .overflow-x-auto::-webkit-scrollbar-thumb,
  .overflow-y-auto::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.215);
  }
  #root {
    overflow: hidden;
  }
}
.marquee_content {
  display: inline-flex;
  gap: 2rem;
  animation: scroll 50s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee_content {
    animation-duration: 20s;
  }
}
@media only screen and (max-width: 767px) {
  .marquee_content {
    animation-duration: 12s;
  }
}
.marquee_content.animation-reverse {
  animation-direction: reverse;
}
.marquee_content > div {
  animation: updown 2s ease-in-out infinite;
  will-change: transform;
}
.marquee_content > div:nth-child(2n+1) {
  animation-delay: 0.2s;
}
.marquee_content > div img {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.marquee_content > div img:hover {
  transform: scale(1.05);
}

@keyframes updown {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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