html, body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #eee7e7;
	color: white;	
}

nav {
    background-color: #ed1c24;
    text-shadow: 2px 2px black;
}

nav .nav-item {
    margin-left: 1rem;
    margin-right: 1rem;
}

.navbar-toggler {
    background-color: white;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}
.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

.navbar-nav .nav-link.active {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

#content {	
    padding-top: 200px;    
    color: black;
}

#content p {
    font-size: 1.2rem;
}

.welcome {
    font-size: 1.5rem;
}

#team img {
	
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.8);
  transition: transform .5s;  
}

#team img:hover {
  transform: scale(1.25);
}

#team .text {
	font-style: italic;
}

#images, .gallery img {
	max-width: 600px;
	max-height: 400px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 10px 0 rgba(0, 0, 0, 0.8);
	margin: 10px;
        transition: transform .5s;
}

#images img:hover {
  transform: scale(1.25);
}

ul {
	display: inline-block;
	text-align: left;
}

a {
	color: black;
}

#address {
	font-size: 1.2em;
}

#address, #services, #specials {
	padding: 20px 0;
}

.heading {
	font-size: 1.2em;
	font-weight: bold;
}

footer {
    background-color: #ed1c24;    
    width: 100%;   
    font-size: 14px;
}

@media (min-width: 768px) {
    #content {
        margin-bottom: 300px;
    }
    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }
}

footer .nav-link {
    color: white;
}

footer .nav-link.active {
    text-decoration: underline;
}

footer .nav-link:hover {
    color: white;
    text-decoration: underline;
}

#btn-back-to-top {
  position: fixed;
  bottom: 100px;
  right: calc(50% - 24px);
  display: none;
  background-color: #e17f86;
  border-radius: 30px;
  width: 48px;
  height: 48px;
  border: 0;
}

#btn-contact {
  position: fixed;
  bottom: 30%;
  right: 20px;
  background-color: #e17f86;
  border-radius: 30px;
  width: 64px;
  height: 64px;
}

.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}