*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #07040e;
}
.wrap{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: absolute;
}
.tx {
    width: 128px;
    background-size: cover;
    border-radius: 200px;
    box-shadow: 0px 0px 40px rgba(63, 81, 181, 0.72);
    border: 3px solid #00a0ff;
    opacity: 1;
    transition: all 1.0s;
}
span{
    background: -webkit-linear-gradient(#5feffe,#208bc9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #3bb1dc;
    font-size: 32px;
    font-weight: 100;
    line-height: 1.2;
    margin-top: 10px;
}
.foot{
    position: absolute;
    bottom: 5px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.up{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
}
.up img{
    width: 80px;
    margin: 0 5px;
}
a{
    color: #ffffff;
    text-decoration: none;
}
.tx:hover {
    box-shadow: 0 0 10px #fff;
    -webkit-box-shadow: 0 0 19px #fff;
    transform: rotate(360deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
#canvas {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* cursor: none; */
}