#gotop {
    display: none;
    background: #004939;
    height: 35px;
    width: 35px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 8px;
    cursor: pointer;
    z-index: 700;
    justify-content: center;
    align-items: center;
}

#gotop:hover {
    background: #ffdb4b;
}

#gotop:active,#gotop:link,#gotop:visited{
   background: #004939;
}

#gotop::after {
    content: "\f106";
    color: #fff;
    font-family: FontAwesome;
    font-size: 2em;
}

footer a:hover {
    color: #ffdb4b;
}

footer {
    height: 5vh;
    background: #000;
    color: #777;
    font-size: 0.95em;
}

footer p {
    padding: 0;
    margin: 0;
}

footer p span::before {
    content: "/";
    padding: 0 7px;
}

footer ul {
    margin-left: 70px;
    margin-bottom: 0;
    display: flex;
}

footer ul li {
    padding: 0 10px;
}

footer ul img {
    padding: 0 5px;
}

footer div:first-child {}

@media only screen and (max-width:999px) {
    footer{

        height: 8vh;
    }
    footer ul {
        display: none;
    }
    footer p span::before {
        display: none;        
    }
    footer p span{
        display: block;
    }
}
@media only screen and (max-width:480px){
    footer{
        height: 10vh;
    }
}