.container {
    grid-template-rows: 5vh repeat(5, 320px) 7vh;
    grid-template-columns: repeat(2, 50vw);
    grid-template-areas: 
    "header header"
    "contact about"
    "image image"
    "carrousel carrousel"
    "education education"
    "tech skills"
    "footer footer";
}

.carrousel__projects {
    width: 80vw;
}

.education__container {
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y:hidden;
}

.education__card {
    margin: 0 20px;
    height: 105px;
}