main{
    padding-top: 10vh;
}
#filters{
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 20vw 20vw 20vw;
    grid-template-rows: auto;
    align-items: center;
    gap: 1vw 2vw;
    justify-content: center;
    .filter{
        border-radius: 1vw;
        text-align: center;
        height: 5vh;
        display: grid;
        place-items: center;
        color: black;
        border: 1.5px solid darkorange;
        font-family: "American Typewriter", sans-serif;
        font-weight: 600;
        background-color: #fafafa;
        text-decoration: none;
    }
}
.nr-title-container{
    display: grid;
    place-items: center;
    height: 15vh;
    h1{
        font-family: "American Typewriter", sans-serif;
        font-weight: 600;
        font-style: normal;
        text-align: center;
        font-size: 3.5vw;
    }

}

hr{
    color: black;
    height: 1vh;
    width: 65%;
}

#realisations{
    display: grid;
    color: #dfdfdf;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 20vh;
    gap: 2vw;
    padding: 5vw;
    .realisation {
        background: #0d0d0d;
        border-radius: 1vw;
        width: 100%;
        height: 100%;
        max-height: 100%;
        min-height: 20%;
        border: 1px solid white;
        position: relative;
        display: -webkit-box;
        display: -ms-flex;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        align-self: flex-start;
        .realisation-img {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .realisation-h1{
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5vw;
            z-index: 2;
            text-shadow: 1px 1px 2px #0d0d0d;
            text-align: center;
        }
    }
    div:hover img{
        transform: scale(105%);
    }
}

.lang-active{
    opacity: 1 !important;
}
.lang-inactive{
    opacity: 0.5 !important;
}

.active-filter{
    background-color: darkorange !important;
    color: white !important;
}

.inactive-filter{
    background-color: white;
    color: darkorange;
}