@charset "UTF-8";
.grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  grid-auto-rows: 20px;
}


/* Non-grid specific CSS */  
body {
 	margin: 10px;
	margin-left: 60px;
	margin-right: 60px;
	color: #374046;
	background-color: #E5E5E5; 
	font-family: 'Gudea', sans-serif;
	font-size: 18px;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	
}

.item {
  background-color: #ffffff;
}
.works:hover{
	border-color: rgba(255,255,255,1.00);
	outline: solid 10px lightgrey;
	cursor: pointer;
}

.photothumb{
  width: 100%;
}
#smallPhoto{
 	 width: 360px;
	float: left;
}

td{
	vertical-align:top;
}

p{
	font-style: italic;
}

.title {
  padding: 10px;
  font-family: 'Dosis', sans-serif;
 }

.title h3{
  font-size: 1.2em;
  color: #ffffff;
  text-transform: uppercase;
}
.title p1{
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
}

.worksTitle p1{
	color: #000000;
}

.about .title h4{
  font-size: 28px;
  color: #ffffff;
}
.about .title p3{
  font-size: 14px;
  color: #ffffff;
}

.project .title{
  background-color: #58A9AA;
}

.blog .title{
  background-color: #A3DDE3;
}

.photo .title{
  background-color: #5FCECC;
}

.desc{
  padding: 10px 10px 5px 10px;
}

.desc img{
  width: 50%;
  margin: 10px 10px 10px 0;
  float: left;
}
.desc video{
	margin: 10px 10px 10px 0;
}

.desc p{
  margin-bottom: 10px;
}

#copyright {
	float:left;
	display: block;
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
	text-align: left;
	font-family: 'Mallanna', sans-serif;
	font-size: 14px;
}

#biography{
	 width: 70%;
}

#participated{
	 width: 50%;
}

#biography td {
	font-style: italic;
  padding-top: 20px;
}


/*
 * Made by Erik Terwan
 * 24th of November 2015
 * All rights reserved
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */


a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

a:hover
{
  color: gray;
}


#menuToggle_container
{
	display: block;
  position: fixed;
	width: 43px;
  height: 32px;
	top: 10px;
  left: 10px;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 5px;
  left: 5px;
  
  z-index: 103;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 105; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #8D8D8D;
  border-radius: 3px;
  
  z-index: 104;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #8D8D8D;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#h-menu
{
	font-family: "Avenir Next", "Avenir", sans-serif;
  position: absolute;
  width: 100vw;
	text-align: center;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 200px;
	padding-left: 20px;
	padding-bottom: 1500px;
	z-index: 102;
  
  background: rgba(255,255,255,0.95);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
   transform-origin: 0% 0%;
  transform: translate(0, -100%);
	opacity: 0;
  
  transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
/* transition: opacity 0.5s cubic-bezier(0.77,0.2,0.05,1.0);*/
}

#h-menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#h-menu p1{
  font-size: 14px;
  color: gray;
}
#h-menu p2{
	font-family: 'Dosis', sans-serif;
  font-size: 25px;
  color: #000000;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
	opacity: 1;
}
