/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
  float: left;
  padding: 5px;
  border: 0px solid red;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

body {
	font-family: 'Open Sans', sans-serif;
}

h1 {
	font-size: 50px;
}

h2 {
	font-size: 35px;
}

h3 {
	font-size: 20px;
}

a{
	text-decoration: none;
}

select {
	font-size: 24px;
}

p, ul, li {
	font-size: 16px;
}

button {
	padding: 10px; 
	cursor: pointer; 
	border: solid gray thin; 
	border-radius: 8px;
	font-size: 16px;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
}

.flex-container > div {
  width: 31%;
  margin: 20px 0.5%;
  padding: 8px;
  border: solid black 1px;
  background-color: lightblue;
	color: black;
	border-radius: 30px;
}

.flex-container > div:hover {
	/*cursor: pointer;*/
	box-shadow: 0px 0px 20px black;
	background-color: darksalmon;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
	font-size: 16px;
	font-weight: bold;
}

.flex-container1 > div {
  width: 48%;
  margin: 20px 0.5%;
  padding: 8px;
  border: solid black 0px;
  color: black;
}

.flex-container1 > div:hover {
	/*cursor: pointer;
	box-shadow: 0px 0px 20px black;
	background-color: darksalmon;*/
}

.flex-container1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
	font-size: 16px;
	font-weight: bold;
}

.videoframe {
	width: 450px; 
	height: 250px;
	border: solid black 2px; 
	max-width: 100%;
}

.vf {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%; 
	max-height: 60%; 
	padding-top: 30px;
}

select {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	width: 95%;
}

input[type=submit]{
	font-size: 24px;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
	background-color: beige;
	color: black;
	padding: 10px;
	border: solid black 1px;
}

@media only screen and (max-width: 1200px) {
    [class*="col-"] {
        width: 100%;
	  	padding: 0px;
    }
    
    .flex-container > div {
        width: 100%;
 		margin: 10px 0.5%;
  		padding: 0px;
    }
	
	.videoframe {
		width: 820px; 
		height: 450px;
		border: none; 
		max-width: 100%;
	}
	
	p, button, ul, li {
		font-size: 16px;
	}
		
	ul, li {
		font-size: 14px;
	}
	
	h1 {
		font-size: 30px;
	}
	

	h2 {
		font-size: 24px;
	}	

	input[type=submit]{
		font-size: 24px;
	}
	
	select {
		font-size: 18px;
	}
	
	h3 {
		font-size: 18px;
	}
	
	input[type=submit]{
		font-size: 18px;
	}
}
