/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: 'Comic Sans MS', Comic Sans, cursive;

  background-image: url("Textures/Bubbles.png");
  background-repeat: repeat;
  background-position: top left;
  background-attachment: scroll;
}

.rainbow {
  text-align: center;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.15;
  display: block;
  margin: 0.6rem auto;
  padding: 0.06em 0.12em 0.18em 0.12em;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #5ac8fa, #007aff, #5856d6, #ff3b30);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rainbow 6s linear infinite;
}

@keyframes rainbow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.outlined {
  background: rgba(0,0,0,0.75);
  color: #FAFAFA;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin: 0.6rem auto;
  max-width: 900px;
  -webkit-font-smoothing: antialiased;
}

.outlined p,
.outlined li {
  font-size: 1.05rem;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.outlined a {
  color: #7ec0ff;
  text-decoration: underline;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}

.outlined p.meow {
  font-size: 2.0rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 600px) {
  .outlined { padding: 0.8rem; margin: 0.4rem; }
  .outlined p, .outlined li { font-size: 1rem; }
}

