@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow&display=swap');
body{
    margin:0px;
}
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    bottom: 0px;
    width: 100%;
    margin-top: auto;
    padding-top:20px;
    padding-bottom:5px;
    background-color:black;
    color:white;
    text-align:center;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 500;
    letter-spacing: 3px; 
}
footer li{
    display:inline;
    padding: 5px;
}
footer .footertext {
    margin:2px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}
footer #copyright{
color:#eb19b0;
font-size: 10px;
letter-spacing: 1.5px;
margin-bottom: 10px;
text-shadow: 0 0 5px #FF0000, 0 0 7px #0000FF;
}

footer img {
height: 1rem;
width: 1rem;
}

footer ul {
margin-top: 15px;
margin-bottom: 8px;
}

@media(max-width:860px) {
    footer {
        width: 80vw;
        margin: auto;

    }
    footer .footertext {
        font-size: 0.6rem;
    }
    footer #copyright{
    font-size: 0.6rem;
    }

    footer img {
        height: 1rem;
        width: 1rem;
    }
}

@media(max-width:440px) {
    footer {
        width: 84vw;
        margin: auto;

    }
    footer .footertext {
        font-size: 0.6rem;
    }
    footer #copyright{
    font-size: 0.6rem;
    }

    footer img {
        height: 1rem;
        width: 1rem;
    }
}

