.projects__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10rem;
}

.project {
    height: 24rem;
    width: 40rem;
    box-shadow: 1rem 1rem .5rem rgba(0,0,0,0.6);
    box-sizing: border-box;
}

.project > a {
    font-family: var(--font-body);
    text-decoration: none;
}

.project__img {
    position: relative;
    width: 100%;
    height: calc(100% - 2.5rem);
    overflow: hidden;
}

.project__bg-base {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.project__shaddow {
    height: 100%;
    width: 100%;
    box-shadow: 0 0 5rem rgba(0,0,0,0.8) inset;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

