body {
  margin: 0;
  padding: 0;
}

.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  padding: 20px;
}

.parallax-content a {
  color: #FFFF84;
}

.about p {
	background-color: rgba(0,0,0,.7);
	color: #fff;
	margin-top: 250px;
	font-size: 1.3rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
	margin-left: 90px;
	margin-right: 50px;
	padding-left: 10px;
}

.parallax:nth-child(odd) {
  background-color: #333;
}

.parallax:nth-child(even) {
  background-color: #666;
}

h1 {
	font-size: 3.6rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
	padding-left: 100px;
}

h2 {
	font-size: 3.6rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
	text-align: center;
}

h3 {
	font-size: 1.6rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
	color: #FFFF84;
	text-align: center;
}

.welcome p {
	font-size: 1.3rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
	margin-left: 90px;
	padding-left: 10px;
}

.services p {
	font-size: 1.3rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	font-weight: normal;
}

.contact p {
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	font-family: Gill Sans, Roboto, Verdana, sans-serif;
	margin-left: 0;
	font-weight: normal;
}

.services-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.service {
  flex-basis: calc(25% - 40px);
  margin: 20px;
  text-align: center;
}

.service img {
  max-width: 100%;
  height: auto;
}

.welcome {
  background-image: url("images/fifthcircuitblue.jpg");
}

.about {
  background-image: url("images/courtroom.jpg");
}

.services {
  background-image: url("images/gray.jpg");
}

.contact {
  background-image: url("images/water.jpg");
}

.contact-btn {
  position: absolute;
  top: 50px;
  right: 100px;
  font-family: Gill Sans, Roboto, Verdana, sans-serif;
  background-color: #FFFF84;
  color: #000;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: normal;
}

.contact-btn:hover {
  background-color: #333;
  color: #fff;
}

