* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background-image: linear-gradient(to left, rgba(219, 80, 137, 0.2), rgba(7, 255, 28, 0.18)), url(../img/bg.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

/*背景*/
#canvasBG {
    z-index: -1;
    position: absolute;
    background: #111111;
}

/*头像*/
.avatar {
    width: 100px;
    height: 100px;
    background: url(../img/avatar.png);
    background-size: cover;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

/*头像*/
.avatar:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.name {
    color: white;
    font-size: 20px;
}

.name:hover {
    color: rgb(10, 255, 14);
}

.content_text {
    color: white;
    font-size: 14px;
}

.content_text:hover {
    color: rgb(10, 255, 14);
    font-size: 16px;
}

#footer {
    width: 100%;
    color: white;
    text-align: center;
    bottom: 0;
    margin-top: 50px;
    margin-bottom: 30px;
}

#footer a {
    text-decoration: none;
    color: white;
}

#footer a:hover {
    color: rgb(10, 255, 14);
}


