@import url(//db.onlinewebfonts.com/c/0d78b12d6be09203d1fbeb76871a369a?family=Century+Gothic);

body{
    color: #cdcdcd;
    font-family: "Avenir Next", "Avenir", sans-serif;
}

.tasarla_container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 4vw 8vw;
    justify-content: space-evenly;
}

.imageContainer{
    display: flex;
    float: left;
    margin: 2vw 3vw;
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
    /* clip-path: inset(-1% -1% -1% -1% round 1vw); */
    /* clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 25% 100%, 5% 70%,1% 60%, 0% 50%, 25% 0%); */
    flex-direction: column;
    align-items: center;
}

.imgMask{
    clip-path: inset(0 0 0 0 round 1vw);
}

img{
    width: 30vw;
    height: auto;

    /* border-radius: 1vw; */
    /* border: solid 1px black; */
    /* box-shadow: 3px 3px 6px rgb(26, 26, 26); */
    
    cursor: pointer;
    transition: ease .2s;
}

img:hover{
    transform: scale(1.1);
    transition: ease .2s;
}

.imageContainer > label{
    opacity: .0;
    font-size: 2vw;
    z-index: 1;

    color: white;
    background-color: #424242;
    
    padding: 0 4vw;
    margin-top: -1.4vw;
}

.imageContainer:hover > label{
    opacity: 1;    
}

.break {
    flex-basis: 100%;
    height: 0px;
  }


.titleContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title{
    font-size: 2.6em;
    color: #a96d3a;
    margin-bottom: 0;
    font-weight: 620;
}

.subtitle{
    font-size: 1.4em;
    color: #454545;
    margin: -0.2em;
}


@media all and (max-width: 600px) {
    img{
        width: 70vw;
    }

    .imageContainer{
        margin: 2vw 4vw;
    }
    

}