/* ----------
 General styles
------------ */

* {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

ul.nav a:hover {
	color: #777 !important;
}

.navbar-default .navbar-nav > li > a:hover {
    color: green;
}

.navbar-default .navbar-brand:hover {
    color: #777;
}


/* ----------
 nav
------------ */

.navbar {
	background-color: #2c3e50;
	border-bottom: 1px solid #FFF;
	padding-top: 10px;
}

.navbar-default .navbar-nav > li > a {
    color: #FFF;
}

.navbar-default .navbar-brand {
    color: #FFFFFF;
}

/* -------------------------
 index page
--------------------------- */

/* jumbotron */
#home {
	background-color: #2c3e50;
	margin-top: -20px;
	height: 490px;
}

.header {
	position: relative;
	top: 60px;
	margin-top: 20px;
}

h1.headline {
	font-size: 30px;
	margin-bottom: 40px;
}

/* portfolio section */

#portfolio {
	background-color: #fff;
	margin-top: -40px;
	color: black;
}

.portfolio-list li {
	color: black;
	font-size: 20px;
}

h3.portfolio-list {
	color: #000;
}

.project-container {
	color: #000000;
}

.project {
	color: #000000;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 20px;
}

.project-links {
	color: black;
	text-decoration: underline;
	font-size: 22px;
	color: blue;
}

.project-info {
	display: flex;
	flex-direction: row;
}


#about {
	background-color: #2c3e50;
	color: #FFF;
}

#about p {
	font-size: 18px;
}

.skills-container {
	display: grid;
	margin: 30px;
}

.skills {
	background-color: gray;
	padding: 5px;
}

.section-headline {
	margin-bottom: 30px;
}

.fa-check {
	margin-left: 5px;
	margin-right: 10px;
}

/* ----------
contact area in index page
------------ */

#contact {
	background-color: #fff;
}

/* ----------
_footer
------------ */

#footer {
	background-color: #2c3e50;
	height: 200px;
	margin-bottom: -20px;
	font-size: 60px;
}

#sub-footer {
	background-color: #233140;
	margin-bottom: -15px;
	height: 100px;
}

#sub-footer h1 {
	font-size: 17px;
	position: relative;
	bottom: 25px;
}

/* -------------------------
media queries for larger screens
--------------------------- */

@media (min-width: 700px) {

	.main-heading, .sub-heading, #about p {
		font-size: 25px;
	}

	.skills-container {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(3, 1fr);
		justify-content: space-around;
	}

	.skills {
		margin: 10px;
	}

	.project {
		margin: 20px;
		width: 95%;
	}

}

@media (min-width: 900px) {

	.project-container {
		display: flex;
	}

	.project {
		border-radius: 5px;
	}

}
