*{
	margin:0;
	padding:0;
}
a {
	text-decoration: none;
	color: white;
	display:block;
}
ul{
	margin:0px;
	padding: 0px;
	list-style: none;
	text-decoration:none;
}
header{

}


table.amdTable{

	display: float;
	color: white;
	border: 2px solid red;
	width: 100%;
	border-collapse: collapse;
	font-size: 25px;
	margin-top: 1em;
}
table.amdTable th{
	color: white;
	border: 2px solid red;
	width: 19%;
	background: rgba(0,0,0,0.6);
	text-align: center;
}

table.amdTable td{
	font-size: 20px;
	color: white;
	border: 2px solid red;
	width: 19%;
	background: rgba(0,0,0,0.6);
	text-align: center;
	
}

table.intelTable{
	display: float;
	color: white;
	border: 2px solid cyan;
	width: 100%;
	border-collapse: collapse;
	font-size: 25px;
	margin-top: 1em;
}
table.intelTable th{
	color: white;
	border: 2px solid cyan;
	width: 19%;
	background: rgba(0,0,0,0.6);
	text-align: center;
}
table.intelTable td{
	font-size: 20px;
	color: white;
	border: 2px solid cyan;
	width: 19%;
	background: rgba(0,0,0,0.6);
	text-align: center;
	
}
table.formTable{
	color:white;
	background: rgba(0,0,0,0.6);
	margin-top: 3em;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
}
table.formTable td{
	padding-bottom:0.5em;
}

iframe{
	height: 500px;
	width: 750px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/*visible menu li's */
.menu {
	margin: 0;
	padding: 0;
	float: left;
	text-decoration:none;
	line-height: 45px;
	text-align: center;
	background: rgba(0, 0, 0, 0.6);
	width:20%; 
	font-size: 25px;
	color:white;
	

	

}
/* ancor elements within the nav bar */
.navBarMenuLink{
	text-decoration:none;
	color: white;
	display:block;
	padding: 0;
	margin: 0;

/*fades in/out the color behind the nav. doesn't work for amd vs intel??*/
	transition-property: background-color;
	transition-duration: 0.19s;
	transition-timing-function: ease-in;
	
}
.navBarMenuLink:hover{
	background: rgba(9,204,230, 0.6);
}
/*hides menu's when not hovered */
.hiddenMenu1, .hiddenMenu2{
	display:none;
}

.subMenu1:hover .hiddenMenu1{
	display:block;
}
.subMenu2:hover .hiddenMenu2{
	display:block;
}


/*------------------------Linear Gradient Transition Start--------------------------------*/
.amdVsIntel{
  position: relative;
  min-height: 100%;
  z-index: 1;
	
}
.amdVsIntel::before{
	position: absolute;
	/*not sure why but has to have content*/
	content: "";
	
	top: 0; right: 0; bottom: 0; left: 0;
	
	background-image: linear-gradient(to right, rgba(255,0,0,0.6) 52%, rgba(0,0,255,0.6) 48%);
	z-index: -1;
	transition-property: opacity;
	/*set to 0.4 so it's a more visible transition*/
	transition-duration: 0.19s;
	transition-timing-function: ease-in;
	opacity: 0;
}
.amdVsIntel:hover::before{
	opacity: 1;
}
/*------------------------Linear Gradient Transition End--------------------------------*/




/*
.amdVsIntel:hover{
	background: linear-gradient(to right, rgba(255,0,0,0.6) 52%, rgba(0,0,255,0.6) 48%);
}
*/


/* Copyright, this is not my video, I do not own the rights... etc */

#homeHeader{
	text-align: center;
	font-size: 40px;
	background: rgba(0,0,0,0.6);
	color: white;
	width: 700px;
	margin-left: auto; margin-right: auto;
	border-radius: 25px;
}
#pageIntro{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 90px;
	color: white;
	background: rgba(0,0,0,0.8);
	margin-top: 2em;
	width: 700px;
	border-radius: 25px;
}

#intoParagraph{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 30px;
	color: white;
	width: 800px;
	background: rgba(0,0,0,0.8);
	border-radius: 25px;
	margin-top: 0.5em;
}
#pageHeading{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 60px;
	color: white;
	background: rgba(0,0,0,0.6);
	margin-top: 2.5em;
	width: 500px;
	border-radius: 25px;
}
#pageText{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 25px;
	color: white;
	width: 50%;
	background: rgba(0,0,0,0.6);
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
#pageText2{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 25px;
	color: white;
	width: 500px;
	background: rgba(0,0,0,0.8);
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
#submit{
	text-align: center;
	margin-right: auto;
	margin-left: auto;

}
#processorList{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 25px;
	color: white;
	width: 50%;
	background: rgba(0,0,0,0.8);
	margin-bottom: 0.5em;
}
#pageText3{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 25px;
	color: white;
	width: 50%;
	margin-top: 0.5em;
	background: rgba(0,0,0,0.8);
}
#links{
	display:inline;
	text-decoration: underline;
	color: cyan;
}

	
	
	























#gpuTable{
		margin-left:auto;
		margin-right:auto;
		width: 50%;
}
#gpuPics{
	width: 100%;
}
#brain{
	position: relative;
	background-image: url(./img/brain.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border: 2px solid green;
	border-radius: 25px;
	width: 480px;
	float: right;
	height: 300px;
}
#smokeVideo{
	position: fixed;
	object-fit: fill;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
#contactVideo{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: fill;
	z-index: -1;
}
#homePageVideo{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: fill;
	z-index: -1;
}
/*copyright not my video */
#m1Video{
	position: fixed;
	width: 50%;
	height: 50%;
	top: 0;
	left: 0;
	object-fit:fill;
	z-index: -1;
}
#m1Video2{
	position: fixed;
	width: 50%;
	height: 50%;
	top: 0;
	right: 0;
	object-fit:fill;
	z-index: -1;
}
#m1Video3{
	position: fixed;
	width: 50%;
	height: 50%;
	bottom:0;
	left: 0;
	object-fit:fill;
	z-index: -1;
}
#m1Video4{
	position: fixed;
	width: 50%;
	height: 50%;
	bottom: 0;
	right: 0;
	object-fit:fill;
	z-index: -1;
}

#amdVIntelBody{
	background-image: url(./img/b2.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
}
#processorBackground{
	background-image: url(./img/processor.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100% 100%;
}


@media(max-width: 800px){
	.menu{
		font-size: 15px;
	}
}



