@charset "utf-8";
/* CSS Document */

*{box-sizing:border-box;}


body{
	background-image:linear-gradient(#2E003D, black);
	background-size:100%;
	background-repeat: repeat-y;

}

a{
color:inherit}

a:hover{
	color:red;
}

a:active{
	color:black;
}
#container{
	width:85%;
	margin-left:auto;
	margin-right:auto;
}

header{
	background-color:#1D319C;
	height:auto;
	margin-left:10px;
	margin-right:10px;
}
.responsivebanner{
	width:100%;
	height:auto;
}

#flexcontainer{
	display:flex;
}
	
nav{
	background-image:linear-gradient(#1D319C,#881D9C) ;
	height:890px;
	font-size: 20px;
	margin-left:10px;
	margin-top:10px;
	margin:7px;
	padding:10px;
	display:flex;
	flex-direction:column; 
	flex:15%;
}

section{
	flex:10%;
	width:20px;
	height:100px;
}
nav li{
	color:#881D9C;
	list-style:armenian;	
}

nav a{
	text-decoration: none;
	color:#9CCFE8;
	border:none;
}
nav a:hover{
	font-size:21px;
	color:#c0e9fc;
}
nav a:active{
	color:#ffffff;
}


article{
	background-color:#881D9C;
	height:auto;
	margin:7px;
	border: solid 4px #750F88;
	padding:10px;
	color:#efa9fc;
	flex:60%;
	margin-top:10px;

}
.clickhere{
	color:#9CCFE8;
	font-style:none;
}

.liverimage{
	float:right;
	width:300px;
	height:auto;
	margin:1px;
	border: solid 4px #750F88;
}
aside{
	background-color:#9E274D;
	height:auto;
	flex:35%;
	margin:7px;
	border: solid 4px #8C1A3F;
	padding:10px;
	color:#f794b4;
	margin-right:10px;
	margin-top:10px;



}
footer{
	background-image:linear-gradient(#881D9C,#1D319C);
	height:auto;
	margin-left:14.5%;
	margin-right:10px;
	margin-top:6px;
	border:4px solid #750F88;
	padding:10px;
	color:#9CCFE8;
}


table{
	border:5px solid #9E274D;
	background-color:#750F88;
	border-spacing: 0;
	width:50%;
	font-size:20px;
	padding:7px;
	
}
tr:nth-of-type(even){
	background-color:#881D9C;
	color:#9CCFE8
}
tr,th{
	border:none;
	padding:5px;

}

.twentythirteenbox{
	background-color:rgba(102, 204, 204, 0.2);
	padding:5px;
	margin-bottom:15px;
	
}

.celebdiv{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}
.celebdiv img{
	width:30%;
	
}
/*MEDIA QUEIRESSSSSS*/
/*tabelt veiw*/
@media (max-width:1024px){

	#flexcontainer{
	display:flex;
	flex-wrap: wrap;
}
	
nav li{
		display:inline-block;
		list-style: none;
		border:solid 4px #370182;
		text-align: center;
		margin:2px;
	}
	
	nav{
		font-size:16px;
		height: auto;
		flex:100%;
	}
		
	
	article{
		flex:6;
	}
	aside{
		flex:4;
	}
	
	footer{
		margin-left:0;
	}

}
/*phone veiw*/
@media (max-width:768px){
	#flexcontainer{
	display:flex;
	flex-direction: column;

	}
	
	nav{
		font-size:16px;
		height: auto;
	}
		
	nav li{
		display:inline-block;
		list-style: none;
		border:solid 4px #370182;
		text-align: center;
		margin:2px;
	}
nav a:hover{
	font-size:19px;
}

	footer{
		margin-left:0;
	}

}