* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1117;
    color: #e6edf3;
    font-family: 'Courier New', monospace;
    margin: 0;
    line-height: 1.6;
}

header {
    margin-bottom: 40px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
}

h1 {
    font-size: 42px;
    margin-bottom: 5px;
}

h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    border-bottom: 1px solid #30363d;
    padding-bottom: 10px;
}

p {
    color: #8b949e;
    margin-bottom: 30px;
}

.project {
    background-color: #161b22;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #30363d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #79c0ff;
}

footer {
    margin-top: 80px;
    color: #8b949e;
}

pre {
    background-color: #0d1117;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 600px;
    font-size: 14px;
    line-height: 1.5;
}
