.footer {
    background-color: rgb(15, 15, 15);
    color: rgb(160, 160, 160);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content{
    list-style: none;
}

.footer-content ul{
    margin: 0;
}

.footer-content li{
    display: inline-block;
    padding: 5px 20px;
}

.footer-content li a{
    color: rgb(160, 160, 160);
    transition: all 0.3s ease 0s;
}

.footer-content li a:hover{
    color: rgb(0, 114, 143);
}

ul{
    padding-left: 0;
}

@media screen and (max-width: 1000px) {
    .footer-content .onlyPC{
        display: none;
    }

    .footer{
        position: relative;
    }
}