/* Reset & box model */
*{
        margin: 0;
        padding: 5px;
        box-sizing: border-box;
        font-family: Poppins, sans-serif;
    }
    /*Page styling*/
    body{
        font-family: Arial;
        margin: auto;
        background-color: skyblue;
        text-align: center;
        line-height: 1.6;
    }

    /* Navigation */
    nav{
        background-color: blue;
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    nav a{
        color:black;
        margin-left: 20px;
        text-decoration: none;
    }
/*Projects section*/

.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 20px; /* space between boxes */
    padding: 20px;
    margin: auto;
}

.project-card {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.project-card img {
    width: 300px;        /* smaller fixed size */
    height: auto;        /* keeps proportions */
    display: block;
    margin: 10px auto;   /* centers the image */
    border-radius: 8px;
}