@font-face {
    font-family: 'Nav-Font';
    src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Title-Font';
    src: url('../fonts/Cormorant-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'LightItalic-Font';
    src: url('../fonts/Cormorant-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Text-Font';
    src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: black;
    text-align: center;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--bg-color);
    padding: 20px 0;
    color: var(--text-color);
    font-family: 'Nav-Font', Arial, sans-serif;
    font-size: 13pt;
}

.footer-content p {
    cursor: default;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.footer-links a {
    font-family: 'Text-Font', Arial, sans-serif;
    font-size: 10pt;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 0.5px;
    color: var(--text-color);
}