* {
    margin: 0;
    
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #e0e0e0;

    width: 50px;
    height: 50px;

    background-image: url('../assets/images/me_pixel.png');
    background-size: contain;
    background-repeat: no-repeat;

    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {

    color: #ffffff;

}

.header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid #2a2a2a;
    background-color: #1a1a1a;
}

.header-item {
    font-size: 0.9rem;
    color: #999;

}

.link-text {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.9rem;

    text-decoration: none;
    color: #e0e0e0;

}