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

header .nav {
    display: flex;
    justify-content: center;
}

header .nav ul {
    width: 40%;
}

.carrousel__projects {
    overflow-x: auto;
}

.education h2 {
    margin-top: 20px;
}

.education__container {
    align-content: space-evenly;
}
.education__card {
    width: 300px;
    height: 80px;
}

.education__card-image {
    width: 100px;
    height: 100px;
}