*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container-project{
    background-color: #333333;
    min-height: 100vh;
}
.project-container{
    padding: 10rem 6rem 10rem 6rem;
    display: flex;
    justify-content: center;
}
.project-wrap{
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 28vw 28vw 28vw;
    column-gap: 3rem;
    row-gap: 3rem;
}
a{
    text-decoration: none;
    color: black;
}
aside{
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    background-color: white;
    padding: 1rem 0 1rem 0;
    box-shadow: 0 0 0.5rem white;
}
aside > p{
    writing-mode: vertical-lr;
    font-family: ClashDisplay-Semibold, sans-serif;
    font-size: 3rem;
}
.foot{
    position: absolute;
    top: 0;
    right: 50%;
    font-family: ClashDisplay-Semibold, sans-serif;
    font-size: 6rem;
}
.foot > p{
    transform: translateX(50%);
    color: white;
    box-shadow: 0 0 0.5rem white;
    padding: 0 1rem 0 1rem;
}
header .contact a{
    background-color: #F2F2F2;
    color: #333333;
    font-weight: bolder;
}

.project-card .name-project > p{
    font-family: "the-seasons", sans-serif;
    font-weight: bold;
    font-style: normal;
}
.wrapper-project > footer{
    height: 100vh;
    background: white;
    display: grid;
    grid-template-rows: 2fr auto;
    position: relative;
    z-index: 1;
}
/*
.project-card .project-img > p {
    font-family: "the-seasons", sans-serif;
    font-weight: bold;
    font-style: normal;
    background-color: rgba(51, 51, 51, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 10px;
}
*/

@media screen and (min-width: 930px) and (max-width: 1450px) {
    .project-wrap{
        grid-template-columns: 38vw 38vw;
    }
}



@media screen and (max-width: 929px) {
    .project-wrap{
        display: grid;
        grid-auto-flow: row;
        grid-template-columns: auto;
        column-gap: 3rem;
        row-gap: 2rem;
    }
    .foot{
        display: none;
    }
    aside > p{
        font-size: 1rem;
    }
    aside{
        z-index: 0;
    }
    .project-container{
        padding: 7rem 2rem 7rem 2rem;
    }
    .wrapper-project footer{
        height: 80vh;
        z-index: 1;
    }
}
