body {
    background-color: #080011;
    color: white;
}
#title {
    font-family: "Y224";
    font-size: 43px;
    font-weight: bold;
    text-transform: uppercase;
    fill: #ec1d3b;
}
.subtitle.ll {
    font-family: "Y224";
    font-size: 34px;
    fill: #141831;
}
.subtitle.hl {
    font-family: "Y224";
    font-size: 34px;
    fill: #141831;
}
#chititle {
    font-size: 45px;
    fill: #a3c847;
}
#outtitle {
    font-size: 20px;
    fill: #141831;
}
#navtitle {
    font-size: 20px;
    fill: #141831;
}
.test {
    animation: 50s ro linear infinite;
}
.subcircle {
    animation: 15s cro linear infinite;
}
.chicircle {
    animation: 30s ro linear infinite;
}
.navcircle {
    animation: 36s cro linear infinite;
}
.outcircle {
    animation: 55s ro linear infinite;
}
a {
    pointer-events: all;
}
.chicircle a:hover {
    fill: yellow;
}
.navcircle a:hover {
    fill: #ec1d3b;
}
.navcircle a {
    fill: yellow;
}
.outcircle a:hover {
    fill: aqua;
}
.outcircle a {
    fill: #4c5bae;
}
.hover {
    fill: aqua;
}
.filler {
    pointer-events: none;
    fill: aqua;
}
svg {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Y224";
    font-weight: bold;
    text-transform: uppercase;
    pointer-events: none;
}
#playbutton {
    fill: #ec1d3b;
    pointer-events: all;
    cursor: cursor;
}
@keyframes ro {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes cro {
    from{
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0);
    }
}