/* FVG Studios */
/* All right Reserved */

/* Automatic image column system and resize */
* {
  box-sizing: border-box;
}

/* Table content align BIG*/
div.table_align {
  text-align: center;
  border: 0px solid black;
}

/* Table content align INSIDE*/
div.table, th, td {
  border: 10px solid #f2f2f2;
}

body {
  background-color: #f1f1f1;			 
  font-family: Arial;
}

/* Center website */
.main {
  max-width: 1000px;
  margin: auto;
}

h1 {
  font-size: 50px;
  word-break: break-all;
}

.row {
  margin: 10px 50px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 10px;
}

/* Create four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: red; 
  padding: 10px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .column {
	width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
	width: 100%;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

div {
	background-image: url('images/12.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

