:root {
  --afro-black: #07110b;
  --afro-deep: #102016;
  --afro-green: #15a34a;
  --afro-red: #d72638;
}

* {
  box-sizing: border-box;
}
/*
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  overflow: hidden;
}
*/
body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  overflow-x: hidden;
}


/* MAIN BACKGROUND */
.hero-background {
  min-height: 100vh;
  position: relative;

  background:
    radial-gradient(
      circle at top right,
      rgba(21, 163, 74, 0.32),
      transparent 32%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(215, 38, 56, 0.28),
      transparent 30%
    ),

    linear-gradient(
      135deg,
      #07110b 0%,
      #102016 50%,
      #050805 100%
    );
}

/* GRID OVERLAY */
.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,.035) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,.035) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
  opacity: .45;
  pointer-events: none;
}

/* OPTIONAL CONTENT */
.content {
  position: relative;
  z-index: 2;
  padding: 4rem;
}

h1 {
  font-size: 4rem;
  margin: 0;
}