body{
background:#080808;
}

.tag{
font-size:10px;
padding:3px 10px;
border:1px solid #2a2a2a;
color:#888;
transition:.15s;
}

.tag:hover{
border-color:#dedede;
color:#e8e8e8;
background:rgba(255,255,255,0.04);
}

.page{
animation:rise .4s ease both;
}

@keyframes rise{
from{opacity:0; transform:translateY(8px)}
to{opacity:1; transform:translateY(0)}
}

::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:#080808}
::-webkit-scrollbar-thumb{background:#2a2a2a}