body {
  padding: 0px;
  background: lightgrey;
  color: black;
  font-family: "Roboto Mono", monospace;
  font-weight: normal;
  font-size: 18px;
  /*cursor: url("images/cursor.png") 4 12, auto;*/
  cursor: url("images/white_cursor.png") 4 12, auto; 
  /*cursor: none;*/
  line-height: 1.6;
}

.article-text > p {
  font-size: 14px;  
}

a {
  color: black;
  text-decoration: none;  
}

a:hover {
  color: #ff3266;
  /*color: #408950;*/
  /*color: #8689bf;*/
  /*color: #FD1D1A;*/
  /*cursor: url("images/cursor.png") 4 12, auto;*/
   cursor: url("images/white_cursor.png") 4 12, auto;
}

.header {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 40px;
  /*font-family: "Bokor";*/
}

.header > p {
  margin-bottom: 0px;  
}

/* splash page styles */
.landing-container {
  margin: auto;
  text-align: center;
}

.landing-image {
  height: 600px;
  position: absolute;
}

.landing-logo {
  height: 300px; 
  position: absolute;
}
/* end splash page styles */

.nav-container {
  /*border: 1px dashed red;  */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.nav-item {
  /*border: 1px dashed blue;*/
  padding: 15px;
}

.nav-item-text {
  /*border: 1px dashed green; */
  font-size: 18px;
}

.nav-item-text > a {
  padding: 5px;  
}

.tab-active {
  border-bottom: 2px solid black;  
}

.photo-grid-container {
  margin-bottom: 3rem;  
}

.photo-grid {
  display: flex; 
  flex-direction: row;
  justify-content: space-evenly;
}

/*.photo-grid > div {*/
/*  height: 100px;*/
/*}*/

.photo-grid-image {
  height: 17rem;
}

.content-grid {
  display: flex; 
  flex-direction: row;
  justify-content: space-evenly;
}

.grid-item {
  padding: 0px;  
  /*box-shadow: 2px 2px 12px rgba(0,0,0,0.2);*/
}

.grid-item:hover {
  /*border: 1px solid black;  */
}

/*.grid-item-link > img {*/
/*  height: 240px;  */
/*}*/

.grid-image {
  height: inherit;  
  /*max-width: 300px;*/
  /*height: 300px;*/
  /*width: 300px;*/
  height: 17rem;
  width: 17rem;
  
}

.main-image {
  height: 600px;
}

.content-container {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 25px; 
  margin-bottom: 50px;
}

.content-container > * {
  margin-bottom: 20px;
}

.grid {	
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(
	  auto-fit, 
		  minmax(
				min(16rem, 100%),
			  1fr
		)
	);
}

	/*.list-item {*/
 /*		flex-grow: 1;*/
 /*		flex-basis: 15rem;*/
	/*}*/

	
li {
  height: 300px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

/*li > a {*/
/*  padding: 0px;*/
/*  margin: 0px;*/
/*}*/

/*li:hover {*/
  
/*}*/

.list {
	list-style: none;
	padding: 0;
}

.list-item {
	position: relative;
	/*padding: 1rem;*/
	/*box-shadow: 2px 2px 12px rgba(0,0,0,0.2);*/
	/*background-size: cover;*/
}

.list-item > a {
  /*border: 1px solid red;*/
  height: 272px;
}

.list-item > img {
	box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
  
}

/*TODO: remove this block when all projects are populated!*/
.list-item > img:hover {
  -webkit-box-shadow:0px 0px 73px 8px rgba(118,214,113,0.9);
  -moz-box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
  box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
}

.list-item > a:hover {
  -webkit-box-shadow:0px 0px 73px 8px rgba(118,214,113,0.9);
  -moz-box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
  box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
}

.photo-grid-image:hover {
  -webkit-box-shadow:0px 0px 73px 8px rgba(118,214,113,0.9);
  -moz-box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
  box-shadow: 0px 0px 73px 8px rgba(118,214,113,0.9);
}

.content {
	display: block;
	/*margin-inline: 2rem;*/
	display: none;
}

/* Slideshow styles*/

.slideshow-container img {
  width: 600px; 
}

.button.left {
  border: 0;
  line-height: 2.5;
  padding: 0 5px;
  font-size: 12px;
  text-align: center;
  color: rgb(100, 100, 100);;
  user-select: none;
}

.button.left:hover {
  background-color: rgb(200, 200, 200);
}

.button.right {
  border: 0;
  line-height: 2.5;
  padding: 0 5px;
  font-size: 12px;
  text-align: center;
  color: rgb(100, 100, 100);
  user-select: none;
}

.button.right:hover {
  background-color: rgb(200, 200, 200);
}

.slideshow-container > .sep {
  line-height: 2.5;
  padding: 0 5px;
  font-size: 12px;
  text-align: center;
  color: rgb(100, 100, 100);
  user-select: none;
}

.pull-quote {
  font-size: 12px;
  font-style: italic;
  text-align: center;
  margin: 40px;
}

.socials {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-evenly;
  font-size: 14px;
}

.article-footer {
  color: grey;
  font-size: 12px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.article-footer > p {
  padding: 50px;
  display: inline;
}