:root {
    --color-dark: #222222;
    --color-accent: #e63946;
    --color-accent2: #5a8fa8;
    --nav-height: 60px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
}

.layout {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100%;
    background-color: var(--color-dark);
    color: white;
}

.top-offset {
    padding-top: var(--nav-height);
}

footer {
    display: flex;
    flex-direction: column;
    background: black;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer_links a:hover {
    color: white;
}

.footer-logo {
    max-height: 200px;
    width: auto;
}

