@font-face {
  font-family: "Faculty Glyphic";
  src: local("Faculty Glyphic"),
    url("fonts/FacultyGlyphic.woff2") format("woff2"),
    url("fonts/FacultyGlyphic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --title-font: "Faculty Glyphic", "Cinzel", serif;
}

body {
  margin: 0;
  padding: 20px;
  color: white;
  font-family: "Proxima Nova", system-ui;
  background-color: #1F1F1F;
}

.title {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow-x: hidden;
  padding: 6px 4px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.text {
  margin: 4px auto auto auto;
  font-size: 1.1em;
}

.bubbler {
  font-size: 1em;
  display: inline-block;
}

.bubbler mark {
  animation: bubble 1s infinite;
  background: none;
  color: white;
}

.bubbler mark:nth-child(1) {animation-delay: 0.25s; display: inline-block;}
.bubbler mark:nth-child(2) {animation-delay: 0.75s; display: inline-block;}
.bubbler mark:nth-child(3) {animation-delay: 0.5s; display: inline-block;}
.bubbler mark:nth-child(4) {animation-delay: 0s; display: inline-block;}
.bubbler mark:nth-child(5) {animation-delay: 0.25s; display: inline-block;}
.bubbler mark:nth-child(6) {animation-delay: 0.75s; display: inline-block;}
.bubbler mark:nth-child(7) {animation-delay: 0.5s; display: inline-block;}
.bubbler mark:nth-child(8) {animation-delay: 0s; display: inline-block;}

@keyframes bubble {
  0%, 14% {color: #F39694;} /* Red */
  14.01%, 29% {color: #FDC288;}
  29.01%, 43% {color: #F2E087;}
  43.01%, 57% {color: #88EF9A;}
  57.01%, 71% {color: #63C9F2;}
  71.01%, 86% {color: #aba8e0;}
  86.01%, 100% {color: #D1A6EA;}
}

a {
  color: #63C9F2;
}

@media (max-width: 750px) {
  .title img {
    height: 30px;
  }
}