h1, h2, h3 {
  font-family: "Russo One", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: white;
  background: #0a0a0a;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}
body::before, body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  animation: backgroundMove 15s ease-in-out infinite alternate;
}
body::before {
  background: #8b0000;
  top: -200px;
  left: -200px;
}
body::after {
  background: #444;
  bottom: -250px;
  right: -200px;
  animation-delay: -7s;
}

@keyframes backgroundMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(150px, 100px) scale(1.3);
  }
  100% {
    transform: translate(-50px, 200px) scale(0.9);
  }
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  display: grid;
  margin: 2% 30%;
  align-content: start;
  gap: 15px;
}

@media (max-width: 1024px) {
  .container {
    margin: 2% 10%;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 2% 5%;
  }
}
.header-grid {
  display: grid;
  margin: 0%;
}

.button-style {
  margin: 1.5% 0%;
  color: inherit;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: flex-start;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 9px;
  background: rgba(30, 30, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button-style:hover {
  transform: translateY(-2px);
  background: rgba(50, 20, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-style img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.button-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-self: stretch;
  margin-left: 18px;
  min-width: 0;
}

.button-content h1 {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: clamp(18px, 4vw, 26px);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-content h1 img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.button-title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.3;
}

.button-description {
  margin: 8px 0 0;
  padding: 0;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.header-nikcAndImg {
  text-align: center;
}

.header-nikcAndImg img {
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.language-switcher {
  text-align: end;
  position: absolute;
  cursor: pointer;
}

.language-switcher img {
  width: 5%;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}/*# sourceMappingURL=styles.css.map */