@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the header */
.header {
  background-color: #ffffff;
  text-align: center;
  font-size: 35px;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
	
  padding: 0;
  height: auto; /* Should be removed. Only for demonstration */
}

.column3 {
  float: left;
  width: 25%;
	vertical-align: middle;
  padding: 0;
  height: auto; /* Should be removed. Only for demonstration */
}
.column2 {
  float: left;
  width: 66.66%;

  padding: 0;
  height: auto; /* Should be removed. Only for demonstration */
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;

}

.row{
background-color: #ffd50f;
	
}

/* Style the footer */
.footer {
  background-color: #283A97;
  padding: 10px;
  text-align: center;
	height=30px;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */


@media (max-width: 720px) {
  .column {
    width: 100%;
	  min-width: 200px
  }
	.column2 {
    width: 100%;
		min-width: 200px
  }
	.column3 {
    width: 100%;
		min-width: 200px
  }
	
	
}