body {
  background-image: url('../images/starstwinkle.gif');
  color: #00ff00;
  font-family: "Comic Sans MS", sans-serif, cursive;
}

h1,
h2 {
  text-align: center;
  color: #ff00ff;
}

a {
  color: #00ffff;
}

a:hover {
  color: #ffff00;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  padding-left: 20px;
  margin-bottom: 10px;
}

li img {
  vertical-align: middle;
  margin-right: 5px;
}

hr {
  width: 50%;
  border-color: #ff00ff;
}

.centered {
  text-align: center;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-gif {
  max-width: 100px;
  height: auto;
}

.blink {
  animation: blinker 1s linear infinite;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: #000080;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

.large-green-text {
  font-size: 48px;
  color: #00ff00;
}

.yellow-text {
  color: #ffff00;
  font-size: 24px;
}

.white-text {
  color: #ffffff;
}

.impact-text {
  font-family: Impact, sans-serif;
  font-size: 36px;
  color: #00ff00;
}

.small-gray-text {
  font-size: 14px;
  color: #888888;
}

.small-cyan-text {
  font-size: 14px;
  color: #00ffff;
}

.profile-photo {
  max-width: 100%;
  height: auto;
  border: 5px solid;
}

.fire-bar {
  max-width: 100%;
  height: auto;
}

.borderless {
  border: none;
}

.time-slip {
  margin-top: 24px;
  font-size: 18px;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@media (max-width: 768px) {
  .profile-photo,
  .fire-bar {
    max-width: 80%;
  }

  .about-gif {
    max-width: 70px;
  }
}
