@charset "utf-8";
/*注意：样式是内联添加的，因为Prefixfree需要访问您的样式，如果它们在本地磁盘上则必须内联！*/
html, body {
    background: black;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
svg {
    width: 100%;
    height: 100%;
}
._info {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    left: 0;
    background: #eee;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}
text {
    font-weight: 100;
}
._old path, ._old text {
    stroke: white;
}
h1 {
    color: orange;
    position: fixed;
    bottom: 5px;
    right: 15px;
    line-height: 15px;
    font-size: 22px;
    font-family: sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
}
.info {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 99;
}
.info:hover:after {
    content: attr(data-title);
    position: absolute;
    z-index: 100;
    left: 20px;
    top: 15px;
    color: white;
    width: calc(100% - 40px);
    white-space: pre;
    font-family: monospace;
}