#projects-section  #title {
    padding: 1rem;
    font-size: clamp(4.5rem, 1rem + 10vw, 7rem);
    text-align: center;
    font-family: 'Anton', sans-serif;
    text-decoration: underline 3px;
    
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.filters > li {
    list-style: none;
    padding: 1rem 1.5rem;
    background-color: rgb(170, 170, 170);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2em;
}

.filters .active {
    background-color: rgb(6, 22, 73);
    color: white;
}

#projects-section {
    transform: translateY(-1px);
}



.project {
    transition: all 400ms ease-in;
    flex: 1 1 300px;
    max-width: 30rem;
    aspect-ratio: 1/1;
    
}

@keyframes slide-in {
    0% {
        transform: translateX(-400%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes slide-down {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(400%);
    }
}




.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 0 15px 0 black;
    margin: 100px 1rem 0 1rem;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}


.project__img-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.5);
    border-radius: 5px;
}

.project__img-wrapper > img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}


.project__img-wrapper > .content,
.project__img-wrapper > .title {
    position: absolute;
    inset: 0;
    padding: 1rem;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project__img-wrapper > .title {
    font-size: 1.8rem;
    text-decoration: underline;
    background-color: rgba(6, 22, 73, 0.8);
    top: -70px;
}

.project__img-wrapper > .content {
    font-size: 1.5rem;
    padding-top: 50px;
}




.project__img-wrapper > img,
.project__img-wrapper > .content,
.project__img-wrapper > .title {
    transition: 200ms ease-in-out;
}

.project__img-wrapper:hover > img.blur {
    filter: blur(5px);
}

.project__img-wrapper:hover > img.zoom {
    transform: scale(1.05);
}

.project__img-wrapper > .content.fade,
.project__img-wrapper > .title.fade {
    opacity: 0;
}

.project__img-wrapper:hover > .content.fade,
.project__img-wrapper:hover > .title.fade {
    opacity: 1;
}
