html {
    font-family: Tahoma, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    height: 2rem;
    line-height: 2rem;
    width: 100%;
    position: fixed;
    bottom: 0;
    font-size: 0.8rem;
}

.footer a {
    color: #f8d210;
    text-decoration: none;
}