
:root{
	--main-active-color: #832B34;
	--link-color: #99CCFF;
}


* {
 font-size: 100%;
 font-family: Georgia, serif;
 color: #FFFFFF;
 text-align: justify;
}


main a{
	text-decoration: none;
}

main a:hover{
	color: var(--link-color);
}


#container {
	width: 70%;
	margin: 0 auto;
	padding: 2% 3%;
	transition: all 1.5s;
	min-height: 100%;
	position: absolute;
	margin-left: 10%;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
}

@media screen and (max-width: 1500px) {
  #container {
     width: 80%;
     font-size: 1.5vw;
     margin-left: 5%;
  };
}

@media screen and (max-width: 1000px) {
  #container {
     width: 90%;
     font-size: 2vw;
     margin-left: auto;
     margin-right: auto;
  };
}


header{
	margin-top: 3%;
	margin-bottom: 3%;
}
h1 {
	font-family: Arial;
	font-size: 2em;
	margin-bottom: 3px;
}

h2 {
	font-family: Arial;
}

nav{
	margin: 1.5em 0px;
}



@keyframes glowing {
  0% { box-shadow: 0 0 5px #FFFFFF; }
  50% { box-shadow: 0 0 20px #FFFFFF; }
  100% { box-shadow: 0 0 5px #FFFFFF; }
  }



nav a{
	font-size: 0.8em;
	padding: 1%;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px #FFFFFF solid;
	border-radius: 5px;
	margin-right: 2ch;
	animation: glowing 2s infinite;
	background-color: #1D1B32
}

.active{
	background-color: rgba(255, 0, 0, 0.4);
	border: 2px #FFFFFF solid;
	animation: none;
}



@keyframes jump {
  0%   {transform: translate(0);}
  50%  {transform: translate(0,10%) ;}
  100% {transform: translate(0);}
}


@keyframes jump {
  0%   {transform: translate(0);}
  16.6%  {transform: translate(0,-40%) ;}
  33.3%  {transform: translate(0,0%) ;}
  50% {transform: translate(0,-20%) ;}
  66.6% {transform: translate(0,0%) ;}
  83.3%	{transform: translate(0,-10%) ;}
  100% {transform: translate(0);}
}

.icon{
	display: inline-block;
	font-size: 1.5em;
	margin-right: 1em;

}

.icon:hover{
	color: var(--main-active-color);
	text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #FFF, 0 0 30px #FFF, 0 0 40px #FFF, 0 0 55px #FFF, 0 0 75px #FFF
}

.icon[id="resume"]{
	animation: jump 2s infinite;
	animation-timing-function: ease-out;
}

#icon-bar{
	margin-top: 2em;
}


footer {
	font-size: 3%;
    width: 100%; // Don't change
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0% 0%;
    position: fixed;
    bottom: 0pt;
    left: 0pt;

}   

.large-header {
   position: fixed;
   width: 100%;
   height: 100%;
   top: 0px;
   left: 0px;
   background: #111;
   overflow: hidden;
   background-size: cover;
   background-position: center center;
   background-image: url("space.jpg");
   z-index: -99;
}

#override{
	background-image: white;
	padding: 1%;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
  height: 100%; 
  position: fixed;
  top:0px;
  left:0px;
  z-index:-1;
  opacity: 0%;
  transition: all 1.5s;

  filter: brightness(80%)
}


#fade{
	position: fixed;
   	width: 45%;
   	height: 100%;
   	right: 0px;
   	top: 0px;
	background-image: url("profile.png");
	background-size: cover;
	z-index:-98;
	color: black;
}

@media screen and (max-device-width: 1000px) {
  #fade {
  	width: 60%;
  };
}

@media screen and (max-device-width: 800px) {
  #fade {
/*  	width: 600px;
  	height: 900px;*/
  	visibility: hidden;
  };
}



