/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1e1e1e;
    font-family: Arial, sans-serif;
    color: #f0f0f0;
    padding: 2rem;
}

/* Header styling */
header {
    margin-bottom: 2rem;
    overflow: hidden;
}

#main-title {
    font-size: 2.5rem;
    font-weight: bold;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

/* Grid layout */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Card styling */
.project-card {
    background-color: #2c2c2c;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h2 {
    margin-bottom: 0.5rem;
    color: #00ffff;
}

.project-card p {
    color: #cccccc;
}

.see-more {
    display: inline-block;
    margin-top: 1.5rem;
    /* increased from 0.75rem */
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.see-more:hover {
    color: #66fcf1;
    text-decoration: underline;
}
