/* 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 {
	background: linear-gradient(blue, lightblue, blue);
}

h1, h2, p, button, .topnav, ul, li {
	font-family: 'Gentium Book Plus', serif;
}

h1 {
	font-size: 50px;
}

h2 { 
	font-size: 25px;
}

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

.header {
	color: blanchedalmond;
	font-size: 40px;
   margin-top: 100px;
}

input[type=text], input[type=email], select, textarea {
	font-size: 26px; 
	width: 100%;
	font-family: 'Gentium Book Plus', serif;
}

input[type=submit] {
	font-size: 22px; 
	width: 100%;
	font-family: 'Gentium Book Plus', serif;
}

button {
	background-color: blanchedalmond;
	border: solid black 1px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 23px;
	padding: 0px 10px;
}

button:hover {
	background-color: yellow;
}

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

.flex-container > div {
	width: 21%;
	margin: 0px 4px 10px 4px;
	padding: 5px;
	border: solid black 1px;
	background-color: salmon;
}

.flex-container > div:hover {
	/*background-color: gray;*/
	border: solid black 1px;
	box-shadow: 0px 0px 10px black;
}

.fc1 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: center;
	color: white;
	font-weight: bold;
}

.fc1 > div {
	width: 31%;
	margin: 0px 4px 10px 4px;
	padding: 5px;
	border: solid black 1px;
	background-color: black;
}

.fc1 > div:hover {
	/*background-color: gray;*/
	border: solid black 1px;
	box-shadow: 0px 0px 10px black;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  margin: 0px auto 25px;
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 16px;
	margin: 0px 2px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: yellow;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: salmon;
  color: black;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

#mantra {
	color: blanchedalmond; 
	font-size: 24px; 
	text-shadow: 0px 0px 6px black; 
	margin-top: -5px;
}

#available {
	font-size: 40px; 
	color: white; 
	text-shadow: 0px 0px 8px black;
}

.pagetitle {
	font-size: 40px; 
	color: white; 
	text-shadow: 0px 0px 8px black;
}

.order-dvd-button {
	color: black; 
	font-size: 24px; 
	background-color: yellow; 
	border-radius: 12px; 
	border: solid black thin; 
	font-family: 'Gentium Book Plus', serif; 
	cursor: pointer; 
	margin-bottom: 12px;
}

.videoframe {
     margin-top: 30px; 
     border: solid black 30px; 
     border-radius: 20px;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 1000px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1000px) {
	
  [class*="col-"] {
    width: 100%;
  }
	
	h1 {
		font-size: 26px;
	}

	
	.header {
		color: blanchedalmond;
		font-size: 28px;
	}
	.flex-container > div {
		width: 95%;
		margin: 0px 4px 35px 4px;
		padding: 5px;
		border: solid black 1px;
		background-color: salmon;
	}
	
 	.fc1 > div {
		width: 95%;
		margin: 0px 4px 10px 4px;
		padding: 5px;
		border: solid black 1px;
		background-color: black;
	}
	.topnav.responsive {
	  position: relative;
	}
	
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
	
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
	
	#mantra {
		color: blanchedalmond; 
		font-size: 19px; 
		text-shadow: 0px 0px 6px black; 
		margin-top: -5px;
	}
	
	#available {
		font-size: 22px; 
		color: white; 
		text-shadow: 0px 0px 8px black;
	}


	.pagetitle {
		font-size: 18px; 
		color: white; 
		text-shadow: 0px 0px 8px black;
	}
     
     .videoframe {
          margin-top: 100px; 
          border: none; 
          border-radius: 0px;
     }
	
}
