:root {
  --white: #fff;
  --shadow: rgba(0, 0, 0, 0.5);
  --blue: rgb(5, 124, 172);
  --pink: rgb(199, 10, 114);
  --pale-mint: rgba(43, 247, 202, 0.5);
  --yellow: rgba(245, 207, 82, 0.8);
  --limeish: rgba(183, 253, 52, 0.8);
  --lime-green: rgba(26, 248, 18, 0.6);
  --pink-alpha: rgba(199, 10, 114, 0.5);
  --black: rgba(0, 0, 0, 1);
}

html,
body {
  font-family: "Raleway", sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  background-image: linear-gradient(80deg, var(--blue), var(--pink));
  text-shadow: 0.25rem 0.25rem 0.5rem var(--shadow);
  overflow-y: hidden;
  overflow-x: hidden;
}

a {
  z-index: 101 !important;
  color: var(--white) !important;
  text-decoration: none !important;
}

a:hover,
a:focus {
  cursor: pointer !important;
}

.container {
  z-index: 100 !important;
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1320px;
}

.content-wrapper {
  width: 100%;
}

#up,
#down,
#left,
#right {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

#up {
  height: 800px;
  width: 800px;
  background-image: linear-gradient(80deg, var(--blue), var(--pale-mint));
  animation: down 40s infinite;
}

#down {
  right: 0;
  height: 500px;
  width: 500px;
  background-image: linear-gradient(80deg, var(--yellow), var(--pink));
  animation: up 30s infinite;
}

#left {
  height: 500px;
  width: 500px;
  background-image: linear-gradient(80deg, var(--blue), var(--limeish));
  animation: left 30s 1s infinite;
}

#right {
  height: 500px;
  width: 500px;
  background-image: linear-gradient(
    80deg,
    var(--lime-green),
    var(--pink-alpha)
  );
  animation: right 40s 0.5s infinite;
}

.logo {
  filter: drop-shadow(0.25rem 0.25rem 0.5rem var(--shadow));
  max-height: 30px;
}

.desenvolvimento {
  background-color: var(--black);
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blink-cursor::after {
  content: "|";
  animation: blinkCursor 1s infinite;
  margin-left: -10px;
}

@keyframes down {
  0%,
  100% {
    top: -100px;
  }
  70% {
    top: 700px;
  }
}

@keyframes up {
  0%,
  100% {
    bottom: -100px;
  }
  70% {
    bottom: 700px;
  }
}

@keyframes left {
  0%,
  100% {
    left: -100px;
  }
  70% {
    left: 1300px;
  }
}

@keyframes right {
  0%,
  100% {
    right: -100px;
  }
  70% {
    right: 1300px;
  }
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media screen and (max-width: 640px) {
  html,
  body {
    overflow-y: auto;
    height: auto;
  }

  .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    align-items: unset;
    justify-content: unset;
    padding: 20px 15px;
    margin: 0;
  }
}

@media screen and (min-width: 641px) and (max-width: 1366px) {
  .container {
    zoom: 80%;
  }
}
