/* FOOTER */

footer {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;

    border-top: solid 1px rgba(255, 255, 255, 0.1);
    background-color:  rgba(20, 30, 48, 0.8);
    backdrop-filter: blur(5px);
}

footer div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 250px;
    box-sizing: border-box;
}

.portsource {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    background-color: #484f66;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: right;
    font-size: 14px;
    font-family: 'Roboto Mono', monospace;
    border: solid 1px rgba(255, 255, 255, 0.1);
    text-align: center;
}

.portsource:hover {
    filter: brightness(0.7);
}

.totop {
    color: white;
    transition: 0.3s;
    background-color: #484f66;
    padding: 5px 10px;
    border-radius: 5px;
    border: solid 1px rgba(255, 255, 255, 0.1);
}

.totop:hover {
    filter: brightness(0.7);
}

footer p {
    background-color: rgba(0, 0, 0, 0.479);
    padding: 10px;
    margin: 0;
}

footer p i {
    margin: 0 2px 0 2px;
    color: rgb(238, 84, 84);
}

@media screen and (min-width: 2400px){
    footer div {
        width: 1700px;
        margin: auto;
        padding: 20px 0;
    }
}


@media screen and (max-width: 1700px) {
    footer div {
        padding: 20px 100px;
    }    
}

@media screen and (max-width: 720px) {
    footer div {
        padding: 20px;
    }
}