@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, body {
	height: 100%;
	width: 100%;
	font-family: 'Poppins', sans-serif;
	background-color: rgba(122, 202, 143, 100)

}
.navbar {
	padding: .5rem;
	background-color: black;
	/* height: 4.3rem; */
}

.navbar-nav > li {
		padding-top: 15px;
		padding-right: 15px;
}

.nav-link {
	font-size: 1.1em;
	color: rgb(255, 255, 255);
}

.nav-link:focus { 
	outline: none;
}

.nav-link:hover {
  color: rgba(246, 152, 54, 100);
}

.navbar-toggler-icon {
	display: block;
	background-image: url(../logos/hamburger.png)
}

.main {
  margin-top: 60px;
}

.social a {
	font-size: 3rem;
	padding: 3rem;
}
.fa-facebook {
	color: #3b5998;
}
.fa-google {
	color: rgb(51, 110, 241);
	background-color: linear-gradient(-120deg, #4285f4, #34a853, #fbbc05, #ea4335);
}
.fa-instagram {
	color: #fff;
	border-radius: 40px;
	line-height: 900px;
	background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}
.fa-yelp {
	color: rgb(199, 12, 27);
}

.fa-facebook:hover,
.fa-google:hover,
.fa-instagram:hover,
.fa-yelp:hover {
	color: #d5d5d5;
}
footer {
	background-color: rgb(14, 12, 12);
	color: rgb(255, 255, 255);
	padding-top: 2rem;
}

footer a {
	color: #d5d5d5;
}
hr.light {
	border-top: 1px solid white;
	width: 75%;
	margin-top: .8rem;
	margin-bottom: 1rem;
}
hr.light-100 {
	border-top: 1px solid black;
	width: 75%;
	margin-top: .8rem;
	margin-bottom: 1rem;
}
hr.light-50 {
	border-top: 1px solid white;
	width: 25%;
}

.my-4 {
	border: 0.1px solid black;
	width: 80%;
}

.middle {
	padding-bottom: 10px;
}

/* css added later */
span.wright {
	float: right;
}

h1 {
	color: rgb(14, 12, 12));
}

h3 {
	text-align: center;
	color: rgb(14, 12, 12);
	text-decoration: underline;
}


/*---Media Queries --*/
@media (max-width: 992px) {
    .social a {
    	font-size: 4em;
    	padding: 2rem;
    }
  }
@media (max-width: 768px) {
    .carousel-caption {
	top: 50%;
}

.display-4 {
	font-size: 200%;
}
.social a {
	font-size: 2.5em;
	padding: 1.2rem;
}
@media (max-width: 576px) {
.display-4 {
	font-size: 200%;
}
.social a {
	font-size: 2.5em;
	padding: 1.2rem;
}

}


/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}




/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/


