* {
  margin: 0;
  padding: 0;
  color: inherit;
  list-style: none;
  outline: none;
  box-sizing: border-box; }

body {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  overflow: hidden;
  font-family: "Noto Sans", sans-serif; }

.vbar {
  width: 130vw;
  height: 160vh;
  position: absolute;
  top: -115vh;
  left: -85vw;
  transform: rotate(45deg); }
  .vbar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top left, #1a1a1a, black); }
  .vbar li {
    background-color: yellow;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: pulse 20s infinite linear;
    mix-blend-mode: screen;
    filter: blur(4vw); }
    .vbar li:nth-child(2) {
      background-color: #0abdc6;
      animation-delay: -5s; }
    .vbar li:nth-child(3) {
      background-color: cyan;
      animation-direction: reverse;
      animation-delay: -10s; }
    .vbar li:nth-child(4) {
      background-color: #711c91;
      animation-direction: reverse;
      animation-delay: -15s; }
    .vbar li:nth-child(5) {
      background-color: magenta;
      animation-direction: reverse; }
    .vbar li:nth-child(6) {
      background-color: #00ff9f;
      animation-delay: -10s; }

@keyframes pulse {
  25%,
  75% {
    border-radius: 70% 30% 30% 70% / 70% 30% 70% 30%; }
  50% {
    border-radius: 30% 70% 70% 30% / 30% 70% 30% 70%; }
  100% {
    transform: rotate(360deg); } }
.info {
  position: absolute;
  top: 3rem;
  left: 3rem; }

.name {
  font-size: 1.5rem;
  padding-bottom: 1em;
  color: cyan; }

.role {
  color: yellow;
  padding-bottom: 1em; }

.links {
  color: magenta; }

/*# sourceMappingURL=main.css.map */
