:root {
  --clr-bg: hsl(0, 0%, 13%);
  --clr-secondary: hsl(0, 0%, 9%);
  --clr-primary: hsl(82, 58%, 36%);
  --clr-y: hsl(206, 22%, 51%);
  --clr-p: hsl(55, 91%, 53%);
  --clr-i: hsl(320, 28%, 50%);
  --clr-c: hsl(10, 53%, 59%);
}

/* * {
  outline: 2px solid yellow;
} */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
.grid {
  display: grid;
  place-items: center;
}
body {
  min-height: 100vh;
  background-color: var(--clr-bg);
  font-family: "Poppins", sans-serif;
  color: white;
}
section {
  min-height: 100vh;
}

/* span {
  background-color: aqua;
} */
.neon--letter:nth-child(1),
.neon--letter:nth-child(2),
.neon--letter:nth-child(3) {
  color: var(--clr-primary);
}

.neon--letter:nth-child(4) {
  color: var(--clr-y);
}
.neon--letter:nth-child(5) {
  color: var(--clr-p);
}
.neon--letter:nth-child(6) {
  color: var(--clr-i);
}
.neon--letter:nth-child(7) {
  color: var(--clr-c);
}

.neon--me {
  text-align: center;
  font-size: 4rem;
  display: inline-block;
  cursor: pointer;
  padding: 0.25em 1em;
  /* text-shadow: 0 0 0.125em hsla(0, 0%, 0%, 0.5), currentColor 0 0 0.45em; */

  /* border: var(--clr-primary) 0.125em solid; */
  /* border-radius: 0.25em; */
  /* box-shadow: inset 0 0 0.5em var(--clr-primary), 0 0 0.5em var(--clr-primary); */

  position: relative;
}

.neon--me:hover,
.neon--me:focus {
  text-shadow: 0 0 0.125em hsla(0, 0%, 0%, 0.8), currentColor 0 0 0.45em;
}

.neon--me::before {
  pointer-events: none;
  content: "";
  position: absolute;
  background: linear-gradient(
    to right,
    var(--clr-primary) 35%,
    var(--clr-y),
    var(--clr-p),
    var(--clr-i),
    var(--clr-c)
  );
  width: 100%;
  height: 100%;
  left: 0;
  top: 55%;
  /* defining how far away we are from the box */
  transform: perspective(1em) rotateX(40deg) scale(1, 0.5);
  filter: blur(0.4em);
  opacity: 0.7;
}

.neon--me:hover::before {
  opacity: 1;
}

.intro {
  display: flex;
  gap: 2rem;
}
.intro p {
  width: 45ch;
  font-size: 0.85rem;
  color: hsl(0deg 0% 100% / 70%);
}

.intro span {
  color: var(--clr-primary);
}

footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding-bottom: 1em;
}
footer a {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
}

footer .email a {
  color: var(--clr-y);
}

footer .git a {
  color: var(--clr-c);
}
footer .fiverr a {
  color: var(--clr-p);
}
footer .codeur a {
  color: var(--clr-i);
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
  text-underline-offset: 0.5em;
  text-decoration-thickness: 3px;
}

.maintenance {
  text-transform: uppercase;
  font-size: 1.25rem;
}
footer > div {
  justify-items: center;
}

.job {
  margin-top: 5rem;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: .8em;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
}