body {
    background: black;
    color: white;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: monospace;
    font-size: 4rem;
}
#particles-js {
    position: fixed;
    bottom: 1px;
    width: 100%;
    height: 100%;
}
.topbar {
    position: fixed;
    top: 10px;
    width: clamp(300px, 50%, 1000px);
    height: 75px;
    background-color: rgba(59, 59, 59, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);

}

.rainbow {
    color: #f00;
    text-shadow: 0 0 50px #f00;
    background-size: 300% 100%;
    animation: rainbow 5s linear infinite;
}
@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.title {
    right: auto;
}

.title-container {
    top: 25%;
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.type {
    animation: type 1s steps(10) forwards, rainbow 5s linear infinite;
    width: 10ch;
    overflow: hidden;
    border-radius: 25px;
    text-shadow: none;
    background-color: rgba(133, 0, 0, 0.691);
    backdrop-filter: blur(5px);
}
.typeline {
    display: inline-block;
    width: 10px;
    height: 85px;
    background-color: #f00;
    animation: blink 1s step-end infinite, rainbow 5s linear infinite;
    margin-left: 5px;
    border-radius: 25px;
}
@keyframes type {
    0% { width: 0; }
    100% { width: 10ch; }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}