.container{
    font-family: sans-serif;
    padding: 50px 0;
}
.head{
    text-align: center;
}

.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-item{
    box-shadow: 0px 15px 30px rgba(184, 184, 255, 0.5);
    padding: 20px;
    border-radius: 16px;
    justify-self: center;
}

.project-image{
    width: 400px;
    height: 240px;

}

.project-image > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.github-btn, .live-btn{
    background-color: rgb(184, 184, 255);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
}