@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: 50%;
	
  padding: 0;
  height: auto; /* Should be removed. Only for demonstration */
}

.column3 {
 
  max-width: 900px;
margin: 0 auto;
	
  padding: 0px 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{padding-top: 0px;
background-color: #4267b2;
}

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

.video {
display: flex;
flex-direction: column;
align-items: center;
	background-color: #99dfdc;
	padding: 100px 0;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media (max-width: 1080px)
	
	{
  .video  video{
 width: 100%;
	  min-width: 200px
  }
	
		.video{ padding:50px}		
}



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