@font-face {
  font-family: lokkaFont; /* set name */
  src: url(Lokka.otf); /* url of the font */
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 2rem;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

nav a.active {
    text-decoration: underline;
}

.site-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    font-family: lokkaFont;
}

footer {
    border-top: 1px solid #333;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #999;

    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #000;
}

footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .site-title {
        position: static;
        transform: none;
    }

    header {
        flex-direction: column;
        gap: 1rem;
    }
}