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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-repeat: repeat;
    background-size: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 800px;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.site-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 10px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.5);
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.project-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.project-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #333;
}

.project-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-link {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin-top: auto;
}

.project-card:hover .project-link {
    color: #764ba2;
}

footer {
    text-align: center;
    color: white;
    opacity: 0.9;
    font-size: 0.9rem;
    text-shadow: 
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .site-title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .projects {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        padding: 30px;
    }
}

