*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito";
}
article{
    width: 70%;
    height: 30%;
    background-color:rgb(193,218,208);
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5%;
}
.projects{
    width: 100%;
    height: 100%;
    background-color: rgb(193,218,208);
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    padding: 10%;
}
.card-projects{
    width: 900px;
    height:100%;
    background-color:rgb(193,218,208);
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
}
.individual-cards{
    width: 250px;
    height: 250px;
    border: 1px solid gray;
    border-radius: 9px;
    background-color:white;
    margin: 1%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.img-box{
    width: 200px;
    height: 200px;
}
figcaption{
    font-size:1.2em;
    font-weight: 600;
}
.individual-cards:hover figcaption{
    color:rgb(153, 217, 140);
}
.individual-cards:hover {
    border: 2px solid rgb(153, 217, 140);
}
.individual-cards:active {
    box-shadow: -1px 0px 7px 0px rgb(153, 217, 140);
}