html, body { 
	height: 100%;
	width: 100%;
	margin: 0px;
}

body { 
	font-family: 'Roboto', sans-serif;
}

a { 
	color: #a3bc7f;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

a:hover { 
	color: #c2d9a0;
}

nav { 
	position: fixed;
	top: 0;
	left: 0;
	height: 50px;
	z-index: 70;
	width: 100%;
	margin:0;
	font-size: 20px;
	background: #222222;
	color: #ffffff;
}

.nav-item { 
	display: inline-block;
 	padding-left: 20px;
 	position: relative;
 	top: 50%;
 	transform: translateY(-50%);
 	-webkit-transform: translateY(-50%);
 	-moz-transform: translateY(-50%);
 	-ms-transform: translateY(-50%);
}

.nav-item a { 
	color: #ffffff;
}

.nav-item a:hover { 
	color: #a3bc7f;
}

#label { 
	position: absolute;
	right: 20px;
	/*padding: 0 10px;*/
	color: #a3bc7f;
}

#icon-page { 
	width: 100%;
	/*height: calc(100% - 50px);*/
	padding-top: 50px;
	background-color: #d8d8d8;
}

#icon-content { 
	position: relative;
	width: 100%;
	padding: 40px 0px;
}

header { 
	text-align: center;
}

#logo { 
	font-size: 40px;
}

#summary { 
	font-size: 20px;
}

#icon-table { 
	font-size: 0px;
	width: 55%;
	margin: auto;
	padding-top: 35px;
}

#hidden-icons { 
	display: none;
}

.icon { 
	width: 12.5%;
	cursor: pointer;
}

#expand-button { 
	text-align: center;
	margin-top: 30px;
}

#info-page { 
	width: 100%;
	background-color: #333333;
	color: #d8d8d8;
}

#info-content { 
	position: relative;
	width: 600px;
	margin: auto;
	font-size: 17px;
}

#info-content h2 { 
	font-size: 25px;
	color: #ffffff;
}

#contribute { 
	padding-bottom: 40px;
}

.info-section { 
	padding-top: 30px;
}

/* Bootstrap button lol */
.see-more-btn {
  display: inline-block;
  /*margin: 30px 0px;*/
  padding: 6px 12px;
  /*margin-bottom: 20px;*/
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #ffffff;
  background-color: #428bca;
  border-color: #357ebd;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
       -o-user-select: none;
          user-select: none;
}
.see-more-btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.see-more-btn:hover,
.see-more-btn:focus {
  text-decoration: none;
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
}
.see-more-btn:active,
.see-more-btn.active {
  outline: 0;
  color: #ffffff;
  background-color: #3276b1;
  border-color: #285e8e;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* Mobile (portrait) */
@media only screen and (orientation: portrait) { 	
	#logo { font-size: 55px;}
	#summary { font-size: 24px;}
	#icon-table { width: 80%;}
	.icon { width: 25%;}
	#label { display: none;}
	.see-more-btn { font-size: 24px;}
	nav { font-size: 24px;}
	#info-content { font-size: 22px; }
}

@media only screen and (max-width: 640px) { 
	#info-content { 
		width: 80%;
	}
}