footer {
    position: fixed; /* Fix the footer to the bottom of the viewport */
    bottom: 0; /* Align it to the bottom */
    left: 0;
    margin: 0;
    padding: 3px 0;
    width: 100%;
    text-align: right;
    font-size: 0.75rem;
    z-index: 1000; 
}

footer p {
    margin: 0; /* Remove default paragraph margin */
    font-size: 0.75rem;
}

a {
    color:white;
    transition: color 0.3s ease;
}
a:hover {
    color: rgb(100, 100, 100);
}