.not_found{
    background-image: url(images/IMG_1676.webp);
    background-size: cover;
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.not-found{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(75, 75, 75, 0.8);
    padding: 20px;
    position: relative;
    height: 30%;
    margin: 0 30% 0 30%;
    border-radius: var(--main-border-radius-big);
}

/*Large Desktop, TV, etc.*/
@media screen and (min-width: 1200px){

}

/*Tablet landscape, laptop, Desktop*/
@media screen and (min-width: 992px) and (max-width: 1199px){ 

}

/*Tablet portrait*/
@media screen and (min-width: 767px) and (max-width: 991px) { 

}

/*mobile landscape*/
@media screen and (min-width: 480px) and (max-width: 766px){
    .not-found{
        height: auto;
        width: 60%;
    }
}

@media screen and (max-width: 479px){
    .not-found{
        height: auto;
        width: 70%;
    }
}