* {
  box-sizing: border-box;
}

body {
  margin: 0;
  
  background: rgba(255,255,255,1);
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: none;
    background-size: auto;
  background-image: url('../images/pexels-rıfat-gadimov-6545222.jpg');
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: Helvetica,Arial,sans-serif;
  color: rgba(0,0,0,1);
  line-height: 1.5;
  font-size: 12px;
  font-family: Verdana;
  color: white; 
}

a {
	text-decoration: none;
	color: white;
}

.header {
  text-align: center;
  padding: 32px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  max-width: 1200px;
  margin: auto;

}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 10px;
}

.column img {
  margin-top: 20px;
  vertical-align: middle;
  border: 2px solid #cccccc;
  outline: rgba(0,0,0,0.1) solid 5px;
  text-align: center;
}

.column img:hover {
  margin-top: 20px;
  vertical-align: middle;
  border: 2px solid #cccccc;
  outline: rgba(132, 40, 40, 0.4) solid 5px;
  text-align: center;
}


.social, .contanct {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
  max-width: 1200px;
  margin: auto;
  margin-top:10px;
  text-align: center;

}

/* Create four equal columns that sits next to each other */
.social_item {
  flex: 10%;
  max-width: 14.2%;
  padding: 0 4px;
}

.social_item img {
  margin-top: 8px;
  vertical-align: middle;
  width:30%;
}

header {
	padding: 0 4px;
	max-width: 1200px;
	text-align: center;
}

.imprint {
	color: #333;
}

.link {
    color: #333;
}

header div {
}

header div a {
	vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}