/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier', monospace;
}

/* Body and layout */
body {
    background: linear-gradient(to bottom, #e0e0e0, #ffffff);
    color: #333;
    line-height: 1.6;
    padding: 0;
    min-height: 100vh;
}

.container {
    margin-top: 20px;
    margin-left: 20px;
    max-width: 800px;
}

/* Header styles */
header {
    margin-bottom: 30px;
}

.name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Section and text styles */
section {
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
}

/* Projects section */
.projects {
    margin-top: 30px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(68, 68, 68, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(68, 68, 68, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.project-url {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Social links */
.social-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.social-links a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #000;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* General link styles */
a {
    color: #444;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .name {
        font-size: 1.8rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .container {
        margin-right: 20px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
}