html{
    scrollbar-width: none;
}
body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar{
    display: none;
}
.bar {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    color: #00aaff;
}
.mini,.expand {
    float: right;
    margin-right: 5px;
    cursor: pointer;
}
.mini:hover,.expand:hover {
    color: #ff4444;
}
.container{
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: hsl(0deg 0% 90%) transparent;
    width: 100%;
    height: calc(50% - 32px);
    margin: 0;
    padding: 0;
    resize: none;
    border: none;
    outline: none;
    font-size: 24px;
    transition: height 0.2s;
    background:
      radial-gradient(circle at 50% 0,
        rgba(255,232,216,.4),
        rgba(255,232,216,0) 70.71%),
      radial-gradient(circle at 6.7% 75%,
        rgba(216,255,216,.4),
        rgba(216,255,216,0) 70.71%),
      radial-gradient(circle at 93.3% 75%,
        rgba(216,232,255,.4),
        rgba(216,232,255,0) 70.71%) #fff;
    background-attachment: fixed;
}
h2{
    text-align: center;
}
a{
    color: #0af;
    font-size: 20px;
    text-decoration: none;
}
a:hover{
    color: #0db;
}
a:active{
    color: #f44;
}
.update_info{
    font-size: 16px;
    position: absolute;
    right: 5px;
    top: 40px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
summary:hover{
    color: #f00;
    cursor: pointer;
}
.copyright {
	position: fixed;
	z-index: 999;
	width: 100vw;
	bottom: 5px;
	color: #0008;
	font-size: 14px;
	text-align: center;
	-webkit-touch-callout: none;
    pointer-events: none;
}