@charset "utf-8";
/* CSS Document */

/*Remove the space around the body*/
*{margin: 0; 
  padding: 0;
}

/*CORE STYLES*/

html{
	box-sizing: border-box; 
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 16px;
}
body{
	background: #000; 
	
}
.grid-container{
	display: grid;  
	grid-template-columns: 1fr;  
	background: #242424;
}
h1{
	color: #e79413; 
	font-family: 'Dancing Script', cursive; 
	font-size: 2rem; text-align: center; 
	padding-top: 1%; 
	padding-bottom: 1%;
}


/*HEADER*/
.header{
	background: #1c1716;
}

/* NAVIGATION BAR */
.topnav {
  overflow: hidden;
  background-color: #171413;
}

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1rem;
}

.active {
  background-color: #251618;
  color: white ;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 1rem;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #37342F;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #FAF89C;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
 background-color: #3C3728; 
 color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/*SHOWCASE*/
.showcase img{
	height: 400px; 
	width: 100%;
}

.main{width: 1fr; padding: 1%; font-size: 12px; background: #3F3F3F;}
/*MAIN-CONTENT*/
.site-content{
	Display: grid;
	margin: 3%;
	grid-template-columns: 2fr 1fr;
	gap: 10px;
	
}

.site-content video{
	width: 100%;
	height: auto;
	display: block;
	padding: 0px;
	margin: 0px;
}

.site-content ul#bvideo_playlist {
	background-color: black;
	
}

.site-content ul#bvideo_playlist li{
	list-style-type: none;
	padding-bottom: 5px;
	
}

.site-content ul#bvideo_playlist li a{
	text-decoration: none;
	font-size: 1rem;
	background-color:#1E3031;
	color: white;
	border: 2px solid black;
	display: block;
	padding: 10px 15px;
	
	
}

/*PAGE*/
.page{
	padding-bottom: 2%;
}


/*FOOTER*/
.footer{
	background: #1c1716;;
}
.footer p{
	color: #e79413;
	font-family: 'Dancing Script', cursive; font-size: 1rem; 
	text-align: center; 
	padding-top: 1%; 
	padding-bottom: 1%;
}


@media screen and (max-width: 600px) {
.header h1{font-size: 1rem;}
.topnav a:not(:first-child), .dropdown .dropbtn {display: none;}
.topnav a.icon {float: right; display: block;}
.topnav.responsive {position: relative;}
.topnav.responsive .icon {position: absolute; right: 0; top: 0;}
.topnav.responsive a {float: none; display: block; text-align: left;}
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {display: block; width: 100%; text-align: left;}
.site-content{grid-template-columns: 1fr;}
.site-content ul#bvideo_playlist li a{
	font-size: 12px;
	background-color:#1E3031;
	color: white;
	border: 1px solid black;
	display: block;
	padding: 5px 7px;
	
	
}
.showcase img{height: 200px; width: 100%;}
.page{padding-bottom: 2%;}
.footer p{font-size: 1rem;}
}

