@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Nunito');

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

:root {
  --jumbotron-padding-y: 3rem;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
}

.projtitle {
	font-weight: bold; 
	font-size: 12px; 
	text-transform: uppercase; 
	color: #b4b4b4;
}

.projlist {
	list-style: none; 
	padding: 0px 0px;
}

.projlist li {
	font-weight: 200;
}

.projlist li a {
	text-decoration: none;
	color: #6a6a6a;
	font-size: medium;
}

.projlist li a:hover {
	color: #999999;
}



@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}

.jumbotron p:last-child {
  margin-bottom: 0;
}

.jumbotron-heading {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: .25rem;
}

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.card-text {
	min-height: 96px;
}

p.card-text {
	margin-bottom: 0.5rem;
}