* {
    user-select: none;

}

.name {
    position: absolute;
    top: 380px;
    right: 100px;
    font-size: 40px;
    font-weight: bolder;

}

.picture {
    position: absolute;
    top: 80px;
    right: 100px;
    width: 310px;
    height: 310px;
    border-radius: 20px;
    background: #e0e0e0;
    box-shadow: 30px 35px 70px gray,
        -9px -9px 70px gray;



}

.musiclist {
    position: absolute;
    top: 700px;
    right: 15%;

    display: flex;
    flex-wrap: wrap;

    border-radius: 30px;
    width: 70%;
    height: auto;

    background-color: rgba(68, 68, 68, 1.00);
    margin-bottom: 200px;
}

.musics {
    margin: 1%;
    margin-bottom: 1%;
    border-radius: 10px;
    flex-basis: calc(48%);
    height: 50px;
    background-color: rgba(122, 122, 122, 1.00);
    text-decoration: none;
}

.musicname {
    margin-left: 70%;
    margin-top: -36px;
    font-size: 18px;


}

.musicpic {
    margin-top: 2px;
    margin-left: 2px;
    border-radius: 14px;
    width: 46px;
    z-index: 20;

}

.playlogo {
    width: 30px;

    margin-bottom: 10px;
    visibility: hidden;
    margin-left: 50%;
}

.musics:hover .playlogo {
    animation-duration: 0.1s;
    animation-name: jumpup;
    visibility: visible;
}

@keyframes jumpup {

    0% {
        margin-left: 40%;
    }

    10% {
        margin-left: 41%;
    }

    20% {
        margin-left: 42%;
    }

    30% {
        margin-left: 43%;
    }

    40% {
        margin-left: 44%;
    }

    50% {
        margin-left: 45%;
    }

    60% {
        margin-left: 46%;
    }

    70% {
        margin-left: 47%;
    }

    80% {
        margin-left: 48%;
    }

    90% {
        margin-left: 49%;
    }

    100% {
        margin-left: 50%;
    }


}

.content {
    width: 100%;

}

/*mobile*/
@media screen and (max-width:375px) {
    * {
        user-select: none;

    }

    .name {
        position: absolute;
        top: 196px;
        right: 50px;
        font-size: 40px;
        font-weight: bolder;

    }

    .picture {
        position: absolute;
        top: 95px;
        right: 57px;
        width: 120px;
        height: 120px;
        border-radius: 20px;
        background: #e0e0e0;
        box-shadow: 30px 35px 70px gray,
            -9px -9px 70px gray;



    }

    .musiclist {
        position: absolute;
        top: 380px;
        right: 10%;
        display: flex;
        flex-wrap: wrap;
        border-radius: 10px;
        width: 80%;
        height: auto;
        background-color: rgba(68, 68, 68, 1.00);
        margin-bottom: 200px;
    }

    .musics {
        margin: 1%;
        margin-bottom: 1%;
        border-radius: 7px;
        flex-basis: calc(48%);
        height: 50px;
        background-color: rgba(122, 122, 122, 1.00);
        text-decoration: none;
    }

    .musicname {
        margin-left: 52%;
        margin-top: -74px;
        font-size: 18px;


    }

    .musicpic {
        margin-top: 2px;
        margin-left: 2px;
        border-radius: 14px;
        width: 46px;
        z-index: 20;

    }

    .playlogo {
        width: 30px;
        margin-bottom: 0px;
        visibility: hidden;
        margin-left: 50%;
    }

    .musics:hover .playlogo {
        animation-duration: 0.1s;
        animation-name: jumpup;
        visibility: visible;
    }

    @keyframes jumpup {

        0% {
            margin-left: 40%;
        }

        10% {
            margin-left: 41%;
        }

        20% {
            margin-left: 42%;
        }

        30% {
            margin-left: 43%;
        }

        40% {
            margin-left: 44%;
        }

        50% {
            margin-left: 45%;
        }

        60% {
            margin-left: 46%;
        }

        70% {
            margin-left: 47%;
        }

        80% {
            margin-left: 48%;
        }

        90% {
            margin-left: 49%;
        }

        100% {
            margin-left: 50%;
        }


    }
}