article, footer, header, nav, section, video {
display:block;
    }
	
header {
	background-image:url(
	'../images/smiley.png');
	background-position:bottom;
	height: 300px;
	background-color: #C0C0BC;
	background-repeat:no-repeat;
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
    }  
	
body {
	margin:0;
	padding:0;
	font-family: 'Poppins', sans-serif;
	font-size:20px;
    } 
	
#container {
	width: 90%;
	padding:10px;
	margin: 0 auto;
	text-align:left;
	margin-top: 50px;
	border:5px solid #F6F5EA;
	background-color: yellow/* #C0C0BC; */
	/* rounded corners coming here next */
	-moz-border-radius: 20px 20px 20px 20px;  
	-webkit-border-radius: 20px 20px 20px 20px;  
	border-radius: 20px 20px 20px 20px;
	} 

nav {
	overflow: hidden;
	background-color: #333332;
	width: 100%;
	margin: 0 0 10px 0
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	}

nav a {
	float: center;
/* 	display: block; */
	color: #FFFFFF;
/* 	text-align: left; */
	padding: 10px 16px;
	text-decoration: none;
	font-size: 20px;
	}

nav a:hover {
	background: #FCE72D;
	color: black;
	}

/* #content {  
	display: table;
	width:100%;  
	border-top: 1px solid #000; 
	}   */
	
section {  
	display:table-cell;  
	width:40%;  
	background-color: #FFFF01;  
	padding:10px; 
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	} 
	
article {  
	display :table-cell;  
	background-color:#070515;  
	color:white;  
	font-size:14px;  
	margin:0px;  
	padding:10px; 
	-moz-border-radius: 20px 20px 20px 20px; 
	-webkit-border-radius: 20px 20px 20px 20px; 
	border-radius: 20px 20px 20px 20px; 
	}

footer {
	overflow: hidden;
	height:30px;  
	padding:5px;  
	text-align:center;  
	font-size: large;  
	background-color:white;  
	-moz-border-radius:  0px 0px 15px 15px;  
	-webkit-border-radius: 0px 0px 15px 15px;  
	border-radius:  0px 0px 15px 15px; 
	}