@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=ubuntu&family=Krona+One&family=Monoton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Krona+One&family=Rubik+Glitch&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inconsolata:wght@200..900&family=Koulen&family=Krona+One&family=Rubik+Glitch&display=swap");
:root {
  --color-background: #000;
  --color-text: #fff;
  --color-variant-1: #43e9ff;
  --color-variant-2: #f9fb00;
  --color-variant-3: #01ff00;
  --color-variant-4: #fd00fb;
  --color-variant-5: #fb0102;
  --color-variant-6: #0301fc;
  --color-link: #43e9ff;
  --title-font-family: "Monoton", sans-serif;
  --header-font-family: "Krona One", sans-serif;
  --body-font-family: "Inconsolata", sans-serif;
  --font-weight-strong: 900;
  --font-size-h1: 6rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.45rem;
  --font-size-h4: 1.15rem;
  --font-size-text: 1.05rem;
  --border-radius: 5px;
}

/*
 * [Modified] Modern CSS Reset
 * @link https://github.com/hankchizljaw/modern-css-reset
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

html {
  overflow-x: hidden;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-size: 100%;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background-color: var(--color-background);
  font-family: var(--body-font-family);
  font-size: var(--font-size-text);
  color: var(--color-text);
}

h1 {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h1);
  font-weight: 700;
  font-size: clamp(2rem, 7vw, var(--font-size-h1));
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

h2,
h3,
h4 {
  font-family: var(--header-font-family);
  line-height: 1;
  margin-bottom: 0.65em;
}

h2 {
  justify-self: center;
  font-size: var(--font-size-h2);
  font-size: clamp(1rem, 4vw, var(--font-size-h2));
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

p {
  margin: 0 0 1rem;
}

strong {
  font-weight: var(--font-weight-strong);
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-variant-4);
  text-transform: uppercase;
}

blockquote {
  padding: 1rem 2rem;
}
blockquote p {
  margin-bottom: 0;
}

#guidelines p:nth-of-type(1),
#contribute p:nth-of-type(1) {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-strong);
}

.profile li,
footer li {
  list-style-type: none;
}

@keyframes glitch-frag-1 {
  0% {
    clip-path: inset(10% 0 85% 0);
  }
  25% {
    clip-path: inset(60% 0 20% 0);
  }
  50% {
    clip-path: inset(30% 0 50% 0);
  }
  75% {
    clip-path: inset(80% 0 5% 0);
  }
  100% {
    clip-path: inset(10% 0 85% 0);
  }
}
@keyframes glitch-frag-2 {
  0% {
    clip-path: inset(20% 0 70% 0);
  }
  25% {
    clip-path: inset(50% 0 25% 0);
  }
  50% {
    clip-path: inset(70% 0 10% 0);
  }
  75% {
    clip-path: inset(30% 0 55% 0);
  }
  100% {
    clip-path: inset(20% 0 70% 0);
  }
}
section {
  background-color: #000;
  position: relative;
  border-radius: 1rem;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 85%;
  z-index: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}
section::before, section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
section::before {
  border: 2px solid rgba(255, 255, 255, 0.05);
  transform: translate(0, 0);
  animation: glitchBorder1 8s infinite steps(1, end);
}
section::after {
  border: 2px solid rgba(255, 255, 255, 0.05);
  transform: translate(0, 0);
  animation: glitchBorder2 10s infinite steps(1, end);
}
@keyframes glitchBorder1 {
  0%, 60%, 65%, 100% {
    transform: translate(0, 0);
    opacity: 0.7;
    border-color: rgba(255, 255, 255, 0.05);
  }
  62%, 63%, 64% {
    transform: translate(-2px, 1px);
    opacity: 0.8;
    border-color: #43e9ff;
  }
  63%, 64%, 65% {
    transform: translate(-1px, 0.5px);
    opacity: 0.85;
    border-color: #fd00fb;
  }
  80%, 81%, 82% {
    transform: translate(1px, -1px);
    opacity: 0.8;
    border-color: #43e9ff;
  }
  81%, 82%, 83% {
    transform: translate(0.5px, 0.5px);
    opacity: 0.85;
    border-color: #fd00fb;
  }
}
@keyframes glitchBorder2 {
  0%, 60%, 70%, 100% {
    transform: translate(0, 0);
    opacity: 0.6;
    border-color: rgba(255, 255, 255, 0.05);
  }
  62%, 63%, 64% {
    transform: translate(2px, -1px);
    opacity: 0.75;
    border-color: #43e9ff;
  }
  63%, 64%, 65% {
    transform: translate(1px, 0.5px);
    opacity: 0.8;
    border-color: #fd00fb;
  }
  80%, 81%, 82% {
    transform: translate(-1px, 1px);
    opacity: 0.75;
    border-color: #43e9ff;
  }
  81%, 82%, 83% {
    transform: translate(-0.5px, -0.5px);
    opacity: 0.8;
    border-color: #fd00fb;
  }
}

section h2 {
  position: relative;
}
section h2::before, section h2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
section h2::before {
  left: -2px;
  text-shadow: -2px 0 #43e9ff;
  animation: glitch-frag-1 1.4s infinite linear alternate-reverse;
}
section h2::after {
  left: 2px;
  text-shadow: -2px 0 #fd00fb;
  animation: glitch-frag-2 1.7s infinite linear alternate-reverse;
}
section h2 {
  display: inline-block;
  margin-bottom: 2rem;
}

h3 {
  color: var(--color-variant-3);
  margin-bottom: 1.5rem;
}

section p,
section li {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

aside li {
  line-height: 1.6;
}

section a {
  color: #43e9ff;
  text-decoration: none;
  transition: color 0.25s, text-shadow 0.25s;
}
section a:hover {
  color: #01ff00;
  text-shadow: 0 0 6px #fd00fb;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}

body::before {
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, #43e9ff 3px, #43e9ff 4px, transparent 4px);
  opacity: 0.06;
  animation: glitchLines 6s infinite steps(2, end);
}

body::after {
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 2px, #fd00fb 2px, #fd00fb 3px, transparent 3px);
  opacity: 0.06;
  animation: glitchLinesAlt 7s infinite steps(3, end);
}

@keyframes glitchLines {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(-2px);
  }
  20% {
    transform: translateY(1px);
  }
  30% {
    transform: translateY(-3px);
  }
  40% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(-1px);
  }
  70% {
    transform: translateY(0px);
  }
  80% {
    transform: translateY(-2px);
  }
  90% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes glitchLinesAlt {
  0% {
    transform: translateY(0px);
  }
  15% {
    transform: translateY(1px);
  }
  25% {
    transform: translateY(-2px);
  }
  35% {
    transform: translateY(2px);
  }
  45% {
    transform: translateY(-1px);
  }
  55% {
    transform: translateY(0px);
  }
  65% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-2px);
  }
  85% {
    transform: translateY(1px);
  }
  95% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
section h2 {
  display: inline-block;
  position: relative;
  color: #fff;
}
section h2:hover {
  text-shadow: 0.025em 0 0 #fd00fb, -0.025em -0.015em 0 #43e9ff, -0.015em 0.025em 0 #fd00fb;
  animation: glitchTextColors 850ms linear infinite;
}
section h2:hover::before, section h2:hover::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
section h2:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-0.05em, -0.025em);
  animation: brokenTextOne 750ms linear infinite;
}
section h2:hover::after {
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
  transform: translate(0.05em, 0.025em);
  animation: brokenTextTwo 1000ms linear infinite;
}

@keyframes glitchTextColors {
  0% {
    text-shadow: 0.05em 0 0 #fd00fb, -0.05em -0.025em 0 #43e9ff, -0.025em 0.05em 0 #fd00fb;
  }
  14% {
    text-shadow: 0.05em 0 0 #fd00fb, -0.05em -0.025em 0 #43e9ff, -0.025em 0.05em 0 #fd00fb;
  }
  15% {
    text-shadow: -0.05em -0.025 0 #fd00fb, 0.025em 0.025em 0 #43e9ff, -0.05em -0.05em 0 #fd00fb;
  }
  49% {
    text-shadow: -0.05em -0.025 0 #fd00fb, 0.025em 0.025em 0 #43e9ff, -0.05em -0.05em 0 #fd00fb;
  }
  50% {
    text-shadow: 0.025em 0.05em 0 #fd00fb, 0.05em 0 0 #43e9ff, 0 -0.05em 0 #fd00fb;
  }
  99% {
    text-shadow: 0.025em 0.05em 0 #fd00fb, 0.05em 0 0 #43e9ff, 0 -0.05em 0 #fd00fb;
  }
  100% {
    text-shadow: -0.025em 0 0 #fd00fb, -0.025em -0.025em 0 #43e9ff, -0.025em -0.05em 0 #fd00fb;
  }
}
@keyframes brokenTextOne {
  0%, 65% {
    transform: translate(0, 0);
  }
  70%, 80% {
    transform: translate(-0.05em, -0.025em);
  }
  85%, 100% {
    transform: translate(0, 0);
  }
}
@keyframes brokenTextTwo {
  0%, 15% {
    transform: translate(0, 0);
  }
  20%, 30% {
    transform: translate(0.05em, -0.025em);
  }
  35%, 100% {
    transform: translate(0, 0);
  }
}
.skip-link {
  position: relative;
  top: 0.5em;
  left: 1em;
}

h1 {
  margin: 1.5em 0.15em 0 0.15em;
  padding: 0.25em;
  justify-self: center;
  position: relative;
  text-shadow: 0.025em 0 0 #fd00fb, -0.025em -0.015em 0 #01ff00, -0.015em 0.025em 0 #43e9ff;
  animation: glitchTextColors 850ms linear infinite;
}
h1::before {
  content: "STYLE STAGE";
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-0.05em, -0.025em);
  animation: brokenTextOne 750ms linear infinite;
}
h1::after {
  content: "STYLE STAGE";
  position: absolute;
  left: 0.25em;
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
  transform: translate(0.05em, 0.025em);
  animation: brokenTextTwo 1000ms linear infinite;
}

@keyframes glitchTextColors {
  0% {
    text-shadow: 0.05em 0 0 #fd00fb, -0.05em -0.025em 0 #01ff00, -0.025em 0.05em 0 #43e9ff;
  }
  14% {
    text-shadow: 0.05em 0 0 #fd00fb, -0.05em -0.025em 0 #01ff00, -0.025em 0.05em 0 #43e9ff;
  }
  15% {
    text-shadow: -0.05em -0.025 0 #fd00fb, 0.025em 0.025em 0 #01ff00, -0.05em -0.05em 0 #43e9ff;
  }
  49% {
    text-shadow: -0.05em -0.025 0 #fd00fb, 0.025em 0.025em 0 #01ff00, -0.05em -0.05em 0 #43e9ff;
  }
  50% {
    text-shadow: 0.025em 0.05em 0 #fd00fb, 0.05em 0 0 #01ff00, 0 -0.05em 0 #43e9ff;
  }
  99% {
    text-shadow: 0.025em 0.05em 0 #fd00fb, 0.05em 0 0 #01ff00, 0 -0.05em 0 #43e9ff;
  }
  100% {
    text-shadow: -0.025em 0 0 #01ff00, -0.025em -0.025em 0 #01ff00, -0.025em -0.05em 0 #43e9ff;
  }
}
@keyframes brokenTextOne {
  0% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(-0.05em, -0.025em);
  }
  80% {
    transform: translate(-0.05em, -0.025em);
  }
  85% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes brokenTextTwo {
  0% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0.05em, -0.025em);
  }
  30% {
    transform: translate(0.05em, -0.025em);
  }
  35% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
header .container h2 {
  justify-self: center;
  max-width: 90%;
  text-align: center;
  line-height: 2rem;
}
header .container h2:before {
  content: "A modern CSS showcase styled by";
  opacity: 20%;
}
header .container h2:after {
  content: "community contributions";
  opacity: 15%;
}
header {
  text-align: center;
}
header p a:hover, header a:hover {
  color: var(--color-variant-4);
}

/* Styles for larger screens */
@media (min-width: 750px) {
  .skip-link {
    top: 2em;
    left: 1.25em;
  }
  h1 {
    margin: 1em 1em 0 1em;
  }
  header .container h2 {
    max-width: 85%;
  }
  header .container h2:before {
    content: "A modern CSS showcase styled by";
    position: absolute;
    width: 75%;
    top: -0.5rem;
    left: -1.5rem;
    opacity: 15%;
    font-size: 5rem;
    text-align: left;
    line-height: 5rem;
  }
  header .container h2:after {
    content: "community contributions";
    position: absolute;
    width: 75%;
    top: 25rem;
    right: 0;
    opacity: 10%;
    font-size: 5rem;
    text-align: right;
    line-height: 5rem;
  }
  header p {
    display: inline;
  }
  header p::after {
    content: " | ";
    font-weight: var(--font-weight-strong);
  }
}
nav {
  margin: 7rem 0 2rem 0;
  border-top: 1px solid var(--color-variant-4);
  border-bottom: 4px solid var(--color-variant-6);
  box-shadow: 0px 2px 1px var(--color-variant-5);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
nav ul a {
  padding: 1rem;
  font-size: 1.5rem;
  text-decoration: none;
}
nav ul a::before {
  width: 100%;
  height: 0.33em;
  background-color: var(--color-variant-6);
  opacity: 0.5;
  content: "/";
}

article#about > .container:nth-of-type(2) {
  background: none !important;
  padding-block: 1.5rem;
}
article#about > .container:nth-of-type(2) ul {
  justify-self: center;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}
article#about > .container:nth-of-type(2) ul li {
  box-shadow: 0px 0px 5px var(--color-variant-2);
  padding: 0.5rem 1rem;
  position: relative;
  color: var(--color-variant-2);
}
article#about > .container:nth-of-type(2) ul li:hover {
  text-shadow: 3px 3px 5px;
}
article#about > .container:nth-of-type(2) ul li:nth-child(odd) {
  color: var(--color-variant-4);
}
article#about > .container:nth-of-type(2) ul li:nth-child(3n) {
  color: var(--color-variant-1);
}
article#about > .container:nth-of-type(2) ul li:nth-child(3n):hover::after {
  content: "——————";
  position: absolute;
  top: -10px;
  left: -10px;
  transform: rotate(0deg);
  text-shadow: 100px 10px 1px;
}
article#about > .container:nth-of-type(2) ul li:nth-child(5n) {
  color: var(--color-variant-3);
  justify-self: start;
}
article#about > .container:nth-of-type(2) ul li:nth-child(5n):hover::after {
  content: "——————";
  position: absolute;
  top: -10px;
  left: -10px;
  transform: rotate(0deg);
}

blockquote {
  border: 2px solid var(--color-variant-3);
  box-shadow: 0px 0px 8px var(--color-variant-2);
}
blockquote::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: -100;
  left: 0;
  width: 500px;
  height: 5px; /* Set the thickness of your border */
  background-color: var(--color-variant-5); /* Set the color of your border */
  clip-path: polygon(15% 75%, 15% 15%, 15% 0%, 75% 0%, 75% 15%, 100% 15%, 100% 75%, 75% 75%, 75% 100%, 15% 100%, 0 100%, 0% 75%);
  animation: glitchStripe 2000ms linear infinite;
}

@keyframes glitchStripe {
  0% {
    transform: translate(0, 0);
    background-color: var(--color-background);
  }
  10% {
    background-color: var(--color-background);
  }
  13% {
    transform: translate(0, 0);
    background-color: var(--color-variant-6);
  }
  16% {
    transform: translate(-0.05em, -0.025em);
    background-color: var(--color-background);
  }
  30% {
    transform: translate(-0.05em, -0.025em);
    background-color: var(--color-background);
  }
  35% {
    background-color: var(--color-variant-6);
  }
  90% {
    background-color: var(--color-variant-6);
  }
  95% {
    transform: translate(0, 0);
    background-color: var(--color-background);
  }
  100% {
    transform: translate(0, 0);
    background-color: var(--color-background);
  }
}
.guidelines {
  background: linear-gradient(120deg, #0301fc, #01ff00);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}
.guidelines h2 {
  color: var(--color-text);
  position: relative;
}
.guidelines h2::before, .guidelines h2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.guidelines h2::before {
  left: -2px;
  text-shadow: -2px 0 var(--color-variant-4);
  animation: glitch-frag-1 1.4s infinite linear alternate-reverse;
}
.guidelines h2::after {
  left: 2px;
  text-shadow: -2px 0 var(--color-variant-3);
  animation: glitch-frag-2 1.7s infinite linear alternate-reverse;
}
.guidelines ol,
.guidelines ul {
  padding-left: 1.2rem;
}
.guidelines ol li,
.guidelines ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

#contribute {
  border-color: rgba(255, 255, 255, 0.25);
}
#contribute h2 {
  font-family: var(--header-font-family);
  font-size: var(--font-size-h2);
  color: var(--color-text);
  position: relative;
}
#contribute h2::before, #contribute h2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
#contribute h2::before {
  left: -2px;
  text-shadow: -2px 0 var(--color-variant-1);
  animation: glitch-frag-1 1.4s infinite linear alternate-reverse;
}
#contribute h2::after {
  left: 2px;
  text-shadow: -2px 0 var(--color-variant-4);
  animation: glitch-frag-2 1.7s infinite linear alternate-reverse;
}
#contribute section:first-of-type {
  position: relative;
}
#contribute section:first-of-type::after {
  content: "";
  position: absolute;
  top: 150px;
  left: 80%;
  width: 100px; /* Set the thickness of your border */
  height: 200px; /* Set the thickness of your border */
  background-color: var(--color-background); /* Set the color of your border */
  border-radius: 0;
  animation: glitchBlock 2000ms linear infinite;
}

@keyframes glitchBlock {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 100%;
  }
  13% {
    opacity: 0%;
  }
  16% {
    opacity: 100%;
  }
  30% {
    opacity: 100%;
  }
  35% {
    opacity: 0%;
  }
  90% {
    opacity: 0%;
  }
  95% {
    opacity: 1000%;
  }
  100% {
    opacity: 100%;
  }
}
.files {
  background: linear-gradient(120deg, #0301fc, #01ff00);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}
.files ul {
  list-style: none;
  margin-top: 1rem;
}
.files ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.files ul li a {
  color: var(--color-variant-3);
  font-weight: bold;
  text-decoration: none;
}
.files ul li a:hover {
  text-shadow: 0 0 6px var(--color-variant-1);
}

.styles {
  background: linear-gradient(120deg, #0301fc, #01ff00);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}
.styles h2 {
  position: relative;
}
.styles h2::before, .styles h2::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.styles h2::before {
  left: -2px;
  text-shadow: -2px 0 var(--color-variant-1);
  animation: glitch-frag-1 1.4s infinite linear alternate-reverse;
}
.styles h2::after {
  left: 2px;
  text-shadow: -2px 0 var(--color-variant-4);
  animation: glitch-frag-2 1.7s infinite linear alternate-reverse;
}
.styles h2 {
  color: var(--color-text);
}

.profile {
  /* Base styling */
  background: linear-gradient(120deg, #0301fc, #01ff00);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
  /* Remove gradient + shadows */
  background: var(--color-bg) !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: var(--color-variant-1);
  margin-left: 20%;
  margin-right: 20%;
  text-align: center;
}
.profile .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile h4 {
  font-family: var(--header-font-family);
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.profile {
  /* currently staged style list */
}
.profile ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  /* Dash-style bullets */
}
.profile ul li {
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.profile ul li::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--color-variant-1);
}
.profile ul li span:first-child {
  font-weight: bold;
  margin-right: 0.25rem;
}
.profile a {
  color: var(--color-variant-1);
  text-decoration: underline;
}

/* featured styles */
#styles > .container {
  padding-block: 2rem;
  background: none !important;
}
#styles .features {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
#styles .features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
#styles .features li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-variant-1);
  font-weight: 700;
}
#styles .features li span + span {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-text);
  opacity: 0.85;
  font-size: 0.95rem;
}
#styles .link-allstyles {
  display: block;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  text-align: center;
}

footer {
  padding: 2rem;
  background: var(--color-background);
  border-top: 4px solid var(--color-variant-3);
  text-align: center;
}
footer p {
  color: var(--color-text);
  font-size: 0.9rem;
}
footer a {
  color: var(--color-variant-4);
  font-weight: bold;
}
footer a:hover {
  text-shadow: 0 0 10px var(--color-variant-1);
}

.link-github svg {
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  fill: currentColor;
}

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