/*
    System     : buffered.dev
    Stylesheet : index.scss
    Engineer   : Christian Westbrook
    Abstract   : This stylesheet contains styles intended for the landing page
                    of buffered.dev.
*/
body {
  /* Colors */
  background-color: #222222;
  color: white;
  /* Text */
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-family: Tahoma;
}

a {
  text-decoration: none;
  color: white;
}

/* Header */
header {
  /* Position */
  margin: 0 auto;
  padding-bottom: 1rem;
  width: 100%;
  /* Colors */
  background-color: #111111;
  /* Border */
  border-bottom: 4px double cyan;
}

/* Hero Section */
#hero {
  /* Position */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 3rem 0;
  gap: 6em;
  width: 100%;
  /* Border */
  border-bottom: 4px double cyan;
}

#hero #headline {
  flex: 1;
  max-width: 70vh;
}

#hero #headline h1 {
  font-size: 38px;
  font-weight: lighter;
  line-height: 1.5;
}

#hero #headline button {
  width: 10rem;
  height: 4rem;
  box-shadow: none;
  pointer-events: none;
  background-color: black;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  font-family: Tahoma;
}

#hero #headline button:hover {
  border: 2px double cyan;
}

#hero #example {
  flex: 1;
  max-width: 35%;
}

#hero #example img {
  border: 4px double cyan;
}

/* Benefits Section */
#benefits {
  /* Position */
  padding: 1rem 0;
  /* Colors */
  background-color: #111111;
  /* Text */
  text-align: left;
  font-size: 24px;
  line-height: 1.5;
  /* Border */
  border-bottom: 4px double cyan;
}

#benefits ul, #benefits p, #benefits h2 {
  margin-left: 45rem;
}

#benefits ul {
  list-style-type: none;
}

/* Classes */
.cyan {
  color: cyan;
}

/* ==================== RETRO WAVE LOGO EFFECT ==================== */
#logo .char, button .char {
  display: inline-block;
  color: #00ffff;
  transition: all 0.3s ease;
  animation: wave 12s infinite steps(6, end);
}

@keyframes wave {
  0%, 100% {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px rgba(0, 255, 255, 0.3137254902);
  }
  16.66% {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px rgba(255, 0, 255, 0.3137254902);
  }
  33.33% {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00, 0 0 20px rgba(255, 255, 0, 0.3137254902);
  }
  50% {
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600, 0 0 20px rgba(255, 102, 0, 0.3137254902);
  }
  66.66% {
    color: #ff0066;
    text-shadow: 0 0 10px #ff0066, 0 0 20px rgba(255, 0, 102, 0.3137254902);
  }
  83.33% {
    color: #6600ff;
    text-shadow: 0 0 10px #6600ff, 0 0 20px rgba(102, 0, 255, 0.3137254902);
  }
}
/* Interactive hover effect for logo and button characters */
#logo .char:hover, button .char:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
}

/* ================================================================= */

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