@import url('https://fonts.googleapis.com/css?family=Dosis');

:root {
  --site-background-dark: darkgreen;
  --site-background-light: lavenderblush;
  --tile-background: NavajoWhite;
  --site-font: rgb(45, 49, 40);
}

*{
	font-family: Dosis, sans-serif;
	background-color: lavenderblush;
}

@media (max-width: 200px){
	.project-tile{
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 49%;
		
		text-align: left;
		
		background-color: var(--tile-background);
		
		border-color: green;
		border-width: 3px;
		border-style: solid;
		border-radius: 10px;
		
		padding: 5px;
		margin: 5px;
	}
}

#welcome-section {
	display: block;
	max-width: 100%;
	/*height: 50vh;*/
	
	background-image: url("https://tomgjohnson.files.wordpress.com/2017/04/img_20141217_155007080.jpg");
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	padding-top: 35px;
	font-family: Teko;
	font-size: x-large;
	
}


.navbar {
    position: fixed;
    top: 0px;
    left: 0%;
    width: 100%;
	height: 40px;
	overflow: hidden;
	background-color: grey;
	
}

.navbar a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;	
}

.navbar a:hover {
	background-color:var(--site-background-light);
	color:var(--site-font);
  }
  
.navbar a.active {
	background-color:aliceblue;
	color: var(--site-background-dark);
  }


h1{
	text-align: center;
	padding: 0px;
	font-size: 32;
	color: var(--site-background-light);
	text-shadow: 0px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
	background-color:rgb(0,0,0,.1);
}

.tile-title{
	text-align: left;
	padding: 0px;
	font-size: 130%;
	color: black;
	background-color:transparent;
}


p{
	font-family: sans-serif;
	background-color: var(--tile-background);
}

a{
	background: transparent;
}

#welcome-p{
	text-align: center;
	background-color: var(--site-background-light);
	padding: 15px;
	color: black;
	font-size: medium;
}

#projects{
	margin-top: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	
	
}



.project-tile{
	display: flex;
	flex-direction: column;
	/*justify-content: center;*/
	width: 29%;
	
	
	font-family: sans-serif;
	text-align: left;
	
	background-color: var(--tile-background);
	
	border-color: black;
	border-width: 2px;
	border-style: solid;
	border-radius: 10px;
	
	padding: 10px;
	margin: 10px;
	transition: border-style .5s ease;
}

.project-tile:hover{
	border-style: dashed;
	/*box-shadow: 0 0 2px 1px var(--site-background-dark);*/
}

figure{
	background-color: var(--tile-background);
}

figcaption{
	text-align:center;
	font-size: 13px;
	font-style: italic;
	background-color: var(--tile-background);
}

img {
	max-width: 100%;
	max-height: 100%;	
	background-color: var(--tile-background);
	transition: box-shadow 0.2s ease;
}


img:hover {
	/*max-width: calc(100%-200px);*/
	height: auto;
	box-shadow: 0 0 2px 4px var(--site-background-dark);
	
	/* border-color: blue;
	border-width: 2px;
	border-style: dotted;
	border-radius: 2px;
	background-color: var(--tile-background);
	*/
}

#bio {
    display: block;
	margin-left: auto;
    margin-right: auto;
	padding: 10px;
	background-color: var(--tile-background);
	border-color: black;
	border-width: 1px;
	border-style: dotted;
	border-radius: 5px;	
}

.bio-p{
	background: transparent;
}

.tag-filter {
	/* Regular styles for tag filters */
	background-color: #ccc;
	color: #000;
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  }
  
.tag-filter.active {
	/* Styles for active tag filter */
	background-color: #333;
	color: #fff;
  }

.filter-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px; /* Optional: Add margin to adjust the vertical positioning */
}
  
