/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 3rem;
    color: #0077cc;
}

p {
    font-size: 1.2rem;
    color: #555;
}

main {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.project-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-item a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.project-item a:hover {
    color: #005f99;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #555;
}
