/*colors=("#a9845b", "#697852", "#738e8e", "#44636f", "#2b4655", "#0f252f")*/

/* Global scope */
:root {
  --color-0: #a9845b; 
  --color-1: #697852; 
  --color-2: #738e8e; 
  --color-3: #44636f; 
  --color-4: #2b4655; 
  --color-5: #0f252f; 
}

body {
	background-color: var(--color-4);
	color: var(--color-0);
	text-align: center;
	font-style: normal;
	font-family: "Monterrat", sans-serif;
}

.shadow-box {
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.3);
  margin-right: 20px;
}

.emoji {
  font-family: "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.parallax {
	/* Create the parallax scrolling effect */
	background-image: url("BrainSagittal.gif");
	/*background-attachment: fixed;*/
	background-position: center;

	/* adjust to fill the screen*/
	padding: .5em;
	height: 6em;
	margin: 2em;
	margin-bottom: -1.5em;
}

#bio, #projects, #socials {
	padding-top: 5em; /* Add a top margin to avoid content overlay */
	margin-bottom: -4em;
}

.container {
	display: flex;
	/*background-color: red;*/
	justify-content: center; /* Centers the item horizontally */
}

.item {
	height: 100px;
	width: 100px; /* A fixed width as the default */
}

.item-center { 
	flex-grow: 1; /* Set the middle element to grow and stretch */
	max-width: 800px;
	width: 100%;
	/*border: red solid;*/
}

/*	.item + .item { 
	  margin-left: 2%; 
}*/

h1 {
	position: middle;
	font-size: 2.5em;
}

p {
	font-size: 1.5em;
	text-align: justify;
}

ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	margin: 0;
    padding: 0;
}

li {
	padding: .8em;
}

.pdf {
	width: 100%;
	height: 600px;
	margin-top: 1em;
	margin-bottom: 5em;
}

#navbar {
	padding: .5em;
	width: 100%;
	height: 10em;
	font-style: normal;
	font-size: 1em;
	margin: -1em;
	position: fixed; /* Set the navbar to fixed position */
	background-image: linear-gradient(to bottom, var(--color-5), rgba(1,1,1,0) 100%);
}


a {
	text-decoration: none;
	color: var(--color-2);
}

a:hover {
	font-weight: bold;
	/*font-style: italic;*/
}

#navbar a {
	font-size: 1.25em;
	padding: .5em;
	letter-spacing: 5px;
  	font-style: normal;
}

#navbar a:hover {
	color: var(--color-2);
	font-weight: bold;
	/*font-style: italic;*/
	text-shadow: 5px 5px 0px var(--color-5);
}

/*#navbar li {
	border-style: solid;
	background-color: var(--color-4);
}*/

#socials a {
	letter-spacing: 5px;
  	font-size: 3em;
  	padding-top:-5em;
}

#socials a:hover {
	color: var(--color-2);
	text-shadow: 5px 5px 0px var(--color-5);
}