body {
  background: url(./images/background.png);
  background-size: auto 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}
main {
  max-width: 850px;
  padding: 0.5rem;
  margin: 0;
  background: #080a29c2;
  box-shadow: 0 0 1rem #080a29c2;
}
a {
  color: #e67d0c;
  transition: 0.2s;
}
a:hover {
  color: #ffce1b;
}
.flex {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}
#header h1 {
  background: linear-gradient(
    120deg,
    #db1237,
    #e67d0c,
    #ffce1b,
    #17903f,
    #1163dd,
    #4c0ec0,
    #e30cbf,
    #db1237
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: scroll 4s linear infinite;
  display: inline-block;
}
@keyframes scroll {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
h1,
h2 {
  margin: 0;
  padding: 0;
}
#red {
  color: #db1237;
}
#yellow {
  color: #ffce1b;
}
#green {
  color: #17903f;
}
#blue {
  color: #1163dd;
}
#purple {
  color: #e30cbf;
}
@media only screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
  .wrap {
    flex-wrap: wrap;
  }
  .text {
    padding: 0.5rem 1rem;
  }
  main {
    width: 100%;
  }
  .reverse {
    flex-flow: column-reverse;
  }
  .mobilehide {
    display: none;
  }
}
