 * {
  box-sizing: border-box;
}

.projects-button{
	padding: 0px;
	border:none;
	width:100%;
	text-decoration: none;
}

.projects-button:hover{
	padding: 0px;
	border:none;
	box-shadow: 7px 7px 4px  #1e0f05;
	text-decoration: none;
}

.projects-card{
  padding: 5px 0px 5px 15px;
	text-align: left;
	background-color: #0d4733; 
	color: #fdebd0; 
	position: relative;
	border-radius: 5px;
}

/*------ Open and close arrows on Projecst page  ----- */
.closed_card{
    background-image: url(../images/arrow-204-16.png);
    background-repeat: no-repeat;
    background-position: right 8px top 10px;
}

.open_card{
    background-image: url(../images/arrow-142-16.png);
    background-repeat: no-repeat;
    background-position: right 8px top 10px;
}
/*------------------------------------ */

/* Container around content button */
.projects-container {
	padding: 4px 8px;
	position: relative;
	background-color: inherit;
	width: 100%;
}

/* Style for the whole projects page */

#content-page {
	height: auto;
	min-height: 100vh;
	background-color:#404040;
}

.projects-nav {
	display: flex;
	justify-content: space-around;
	padding: .5rem;
}

.projects-link {
	color: #989898;
	font-size: .85rem;
	text-decoration: none;
	cursor: pointer;
}

.projects-link:hover {
	text-decoration: none;
	color: #C8C8C8;
	font-weight: bold;
}

.projects-link.active_skill{ /*  this is the real active class */
	color: #DCDCDC;
	font-weight: bold;
}

.projects_subheader{
	color:white;
	padding-left:1.2rem;
}

/* --------------------------------
    MEDIAQUERIES
-------------------------------- */

/* Things to change on large screens */

@media (min-width: 768px) {
	.projects-nav	{
		padding-bottom:1.5rem;
	}

	.projects-link{
		width: 9rem;
	}

	.projects-container {
		padding: .5rem 1.5rem;
	}
}
