@font-face {
    font-family: 'DotPay';
    src: url('/media/fonts/DotPay-Regular.woff2') format('woff2');
    font-weight: normal;
}
@font-face {
    font-family: 'DotPay';
    src: url('/media/fonts/DotPay-Bold.woff2') format('woff2');
    font-weight: bold;
}
@font-face {
    font-family: 'DotPay';
    src: url('/media/fonts/DotPay-Medium.woff2') format('woff2');
    font-weight: 500;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'DotPay', Arial, sans-serif;
    background-color: #fff;
    color: #000;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    width: 200px;
}
.footer {
    background-color: #7c0000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.demo-link {
    text-align: center;
    margin: 20px 0;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
a {
    color: #6c757d;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: color 0.3s;
}
a:hover {
    color: #7c0000;
}
@media (max-width: 600px) {
    .logo {
        width: 250px;
    }
    .footer {
        font-size: 6px;
        padding: 8px;
    }
    .demo-link {
        margin: 10px 0;
        font-size: 10px;
    }
}
