
*{
    text-align: center;
    /* border: solid 1px black; */
    font-family: 'Open Sans', Verdana, Geneva, Tahoma, sans-serif;

}


/* Reset some default styles */

body, h1, h2, p, a {
    margin: 0;
    padding: 0;
}

/* Style the portfolio grid container */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

/* Style each portfolio item */
.portfolio-item {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Style the project image */
.portfolio-item img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
}

/* Style project title and description */
.portfolio-item h2 {
    margin-top: 10px;
    font-size: 1.5rem;
}

.portfolio-item p {
    margin-top: 10px;
    font-size: 1rem;
}

/* Style repository and demo links */
.portfolio-item a {
    display: block;
    margin-top: 15px;
    text-decoration: none;
    color: #007BFF;
}

/* Hover effect for links */
.portfolio-item a:hover {
    text-decoration: underline;
}

.headerLink{
    color: #ff69b4;
    text-decoration: none;
    font-size:32px;
    width:100%;
    height:75px;
    
}


/* Style the project image */
.portfolio-item .project-image {
    width: 350px;
    height: 350px;
    object-fit: cover; /* This ensures the image covers the square without stretching */
    border: 1px solid #ccc;
}

#backButton{
    padding-bottom:15px;
}