body, html {
    height: 100%;
	background-color: #D0BDD8;
}
h2{
	font-size: 64px;
	font-family: georgia;
	color: white;
	text-align:center;
}
.hero-image{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("hero.jpg");
	height: 100vh;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
h1{
	font-size: 64px;
	font-family: georgia;
	color: white; 
}
p{
	font-size: 24px;
	font-family: georgia;
	padding-left: 70px; 
	padding-right: 70px;
}
.glow{ /*This is the button and its anamation effects for the border glow*/
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
	font-family: georgia;
	font-size: 20px;
	font-weight: bold;
}
.glow:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}
.glow:active{
	color:#000;
}
.glow:hover:before{
	opacity:1;
}
.glow:after{
	z-index:-1;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background:#AE90C1;
	left: 0;
	top:0;
	border-radius:10px;
}
@keyframes glowing{
	0% { background-position: 0 0; }
	50% { background-position: 400% 0; }
	100% { background-position: 0 0; }
}
.container{
	margin:50px auto;
	width: 100%;
	padding: 8px;
}
h1{
	text-align: left;
	position:relative;
	padding-top: 30px;
	padding-left: 200px;
}
p{
	font-size: 26px;
	line-height: 40px;
	padding-left: 100px;
}
#p1{
	font-family: courier;
}
#p2{
	font-family: georgia;
}
#p3{
	font-family: comic-sans;
}
#p4{
	font-family: veranda;
}
#brain{
	width:500px;
	height:500px;
	float:right;
}
#n1Pic{
	width:400px;
	height:400px;
	padding-left: 70px;
	padding-right: 30px;
	float: left;
}
#n3Pic{
	width:350px;
	height:400px;
	padding-left: 70px;
	padding-right: 30px;
	float:left;
}
#n7Pic{
	width:350px;
	height:400px;
	padding-left: 70px;
	padding-right: 30px;
	float:left;
}
#link1{
	color:white;
}
#link1:active{
	color:white;
}
#link1:visited{
	color:purple;
}
#link1:hover{
	color:blue;
}

#link2{
	color:black;
}
#link2:active{
	color:black;
}
#link2:visited{
	color:green;
}
#link2:hover{
	color:red;
}

#link3{
	color:pink;
}
#link3:active{
	color:pink;
}
#link3:visited{
	color:light-blue;
}
#link3:hover{
	color:violet;
}
