* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Georgia', serif;
    background: #f8f6f0;
    color: #2c2c2c;
    height: 100vh;
    overflow: hidden;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#pixelCanvas {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    max-width: 400px;
}

.name {
    font-size: 2.8rem;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    min-height: 3.2em;
}

.links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.link {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.link:hover {
    border-bottom-color: #2c2c2c;
}

.year {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 0.9rem;
    color: #999;
    z-index: 10;
}

@media (max-width: 768px) {
    .content {
        bottom: 60px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .year {
        top: 30px;
        right: 20px;
    }
}