/* projeler start */

.projecontainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px;
}

.projebox {
    position: relative;
    text-decoration: none;
    box-shadow: 0 0 7px black;
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all .6s ease;
    display: inline-block;
}

.projebox img {
    width: 100%;
    height: 75%;
}

.projebox .projefooter {
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;

}







/* projeler Stop */

@media (max-width:1024px) {


    .projebox {
        width: 200px;
        height: 200px;
    }
}

@media (max-width:400px) {

    .projecontainer .projebox {
        width: 150px;
        height: 150px;
    }

    .projebox img {

        height: 70%;
    }


}