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

.homeContainer {
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../images/homeBackground.jpg) no-repeat center center;
    background-size: cover;
    box-sizing: border-box
}

.homeContainer #musicBox {
    width: 40px;
    height: 40px;
    cursor: pointer
}

.homeContainer #musicBox img {
    cursor: pointer
}

.homeContainer #musicBox img:nth-child(1) {
    position: fixed;
    display: block;
    top: 60px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 99
}

.homeContainer #musicBox img:nth-child(2) {
    position: fixed;
    display: block;
    top: 60px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 999;
    -webkit-animation: imgTwoMove linear 3.2s;
    animation: imgTwoMove linear 3.2s
}

@-webkit-keyframes imgTwoMove {
    0% {
        opacity: 0
    }
    99% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

@keyframes imgTwoMove {
    0% {
        opacity: 0
    }
    99% {
        opacity: 1
    }
    100% {
        opacity: 1
    }
}

.homeContainer .musicMove {
    -webkit-animation: musicMove 3s linear infinite .2s;
    animation: musicMove 3s linear infinite .2s
}

@-webkit-keyframes musicMove {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes musicMove {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }
    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

.homeContainer #canvas {
    width: 100%;
    height: 100%;
    z-index: -1
}

.homeContainer .toTop:hover {
    background: #3498db;
    transition: showAll ease-in-out;
    animation-fill-mode: forwards;
    -webkit-animation: showAll .3s linear 0s 1 forwards;
    animation: showAll .3s linear 0s 1 forwards
}

.homeContainer .toTop:hover img {
    display: block
}

@-webkit-keyframes showAll {
    0% {
        bottom: 35px;
        right: -50px
    }
    100% {
        bottom: 35px;
        right: 0
    }
}

@keyframes showAll {
    0% {
        bottom: 35px;
        right: -45px
    }
    100% {
        bottom: 35px;
        right: 0
    }
}

.homeContainer .toTop {
    position: fixed;
    bottom: 35px;
    right: -45px;
    width: 50px;
    height: 28px;
    background: #3498db;
    box-sizing: border-box;
    text-align: center;
    border-radius: 3px
}

.homeContainer .toTop img {
    display: block;
    width: 26px;
    height: 14px;
    margin-top: 7px;
    margin-left: 12px
}

.homeContainer p#myParticulars {
    position: absolute;
    top: calc(50% - 20px);
    height: 40px;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #8b008b
}

.homeContainer span {
    display: block;
    position: absolute;
    top: calc(50% + 20px);
    height: 40px;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #8b008b
}

.homeContainer .pageDown {
    display: block;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-animation: pageDownAnimate 2s linear 2s infinite alternate;
    animation: pageDownAnimate 1.2s linear 0s infinite alternate
}

.homeContainer .pageDown span {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -27px;
    margin-left: 10px;
    background: url(../images/pageDown.png) no-repeat center;
    background-size: cover
}

@-webkit-keyframes pageDownAnimate {
    0% {
        bottom: 20px;
        opacity: 1
    }
    50% {
        bottom: 10px;
        opacity: .5
    }
    100% {
        bottom: 20px;
        opacity: 1
    }
}

@keyframes pageDownAnimate {
    0% {
        bottom: 20px;
        opacity: 1
    }
    50% {
        bottom: 10px;
        opacity: .5
    }
    100% {
        bottom: 20px;
        opacity: 1
    }
}

.section {
    width: 100%;
    height: 100%
}

.section:nth-child(2n) {
    background: #28a5d0
}

.section:nth-child(2n+1) {
    background: #0ff
}