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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff7e4;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(170, 120, 80, 0.15);
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.container h1 {
    font-size: 40px;
    color: #c437a5;
    margin-top: 40px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    color: #0f766e;
    ;
    margin-bottom: 50px;
}

/* Overall Grid */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Project Card */
.project {
    text-decoration: none;
    background: #d469bd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.project-title {
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff7e4;
    ;
}

.description {
    font-size: 13px;
    color: #fbd1f3;
    padding: 10px 0 20px;
    line-height: 1.3;
    max-width: 85%;
    margin: 0 auto;
    display: block;
}