
/*-------------------------------------------------------------------------------- Home */


.header1 {color:#f79433; font-family: Ubuntu; font-size: 1.5em; text-shadow: 2px 2px 2px #ebebeb;}
.header2 {color:#f79433; font-family: Ubuntu; font-size: 1.25em;}


.cards-container {
	display: block;
	width: 1000px;
	margin: auto;
}

.card {
	display: inline-flex;
	width: 250px;
	height: 250px;
	border: 3px solid #e6e6e6;
	margin: 0px 8px 20px 8px;
	padding: 20px;
	transition: 0.5s;
}

.card:hover {
	border: 3px solid #ffffff;
	border-radius: 10px;
	box-shadow: 0px 0px 20px #fecf8d;
}

.card-content {
	width: 250px;
	height: 250px;
	margin: 0px;
	padding: 0px;
	text-align: left;
}

.card-icon {
	margin-left: 15px;
}

.card-title {
	margin: 10px 10px 20px 10px;
}

.card-item {
	margin: 10px 10px 10px 20px;
	color: #e6e6e6;
}

.card-item a {
	color: #333333;
	text-decoration: none;
	transition: 0.33s;
}

.card-item a:hover {
	color: #f79433;
	text-shadow: 0px 0px 1px #fecf8d;
}



/* Shell Buttons --------------------------------------------------------------------------------*/

.shell {
	margin-left: 10px;
}

.shell button {
	width: 30px;
	height: 30px;
	background: #ffffff;
	border: 1px solid #ebebeb;
	outline: none;
	color: #808080;
	font-family: Ubuntu;
	font-size: 0.56em;
	font-weight: bold;
	transition: 0.33s;
	cursor: pointer;
}

.shell button:hover {
	border: 1px solid #f79433;
	color: #f79433;
}

