body {
    margin: 0;
}

#container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 100dvh;
}

.col {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem;
    position: relative;
}

#col1 {
    background: url(../images/mersin.jpg);
    align-items: flex-end;
    background-size: cover;
    background-position: bottom right;
}

#col2 {
    background: url(../images/antalya.jpg);
    background-size: cover;
    background-position: bottom left;
}

.button.full{
    width: 100%; height: 100%; display: block; position: absolute; top: 0; left: 0;
}

@media only screen and (max-width: 800px) {
    img {
        max-width: 100%;
    }

    .col a:first-child {
        order: 1;
    }
	
    #col1 {
		background: url(../images/mersin.png) #FFF no-repeat center;
		background-size: 75%;
        height:50%;

    }

    #col2 {
		background: url(../images/antalya.png) #006136 no-repeat center;
		background-size: 75%;
        height:50%;

    }
	#container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	}

}