.projectgrid article {
    border: 3px solid #c58422;
    border-radius: 10px;
    width: 360px;
    margin: 30px;
    text-align: left;
    background-color: #171718;
    transition-property: all;
    transition-duration: 0.15s;
}

.projectgrid article img {
    max-width: 360px;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0px 0px;
}

.projectgrid article header {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 3px;
    margin-bottom: -10px;
}

.projectgrid article p, header {
    color: #f5f5f5;
    padding: 0px 12px;
}

.projectgrid article:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 3px 3px #aaaaaa8f;
}