* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --dark: #000000;
  --primary: #00ff4d;

  --bg-body: #000209;

  --font-outfit: "Outfit", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-roboto-mono: "Roboto Mono", monospace;
}

body {
  background-color: var(--bg-body);
  background-image: radial-gradient(ellipse at top, #001a0a 0%, #000209 60%);
  color: var(--white);

  background-image: url(/wp-content/uploads/2026/03/Desktop-3.webp);
  background-size: cover;
  background-position: top right;
}

@media (max-width: 768px) {
  body {
    background-position: top left;
  }
}

.container {
  max-width: 70rem;
}

.row {
  --bs-gutter-x: 1.25rem;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 1rem;
  gap: 10px;

  width: fit-content;
  min-width: 224px;
  max-width: 100%;

  background: linear-gradient(
    90deg,
    rgba(13, 255, 0, 0.299) 0%,
    rgba(13, 255, 0, 0.65) 52.88%,
    rgba(8, 153, 0, 0.65) 100%
  );
  border-radius: 14px;

  font: 700 1rem/normal var(--font-outfit);
  color: var(--white);
  text-transform: uppercase;
  text-align: center;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

  &:hover {
    background: linear-gradient(
      90deg,
      rgba(13, 255, 0, 0.65) 0%,
      rgba(13, 255, 0, 0.299) 52.88%,
      rgba(13, 255, 0, 0.65) 100%
    );
    color: var(--white);
    transform: scale(1.02);
  }
}
