body {
	font-family: 'Roboto Mono', monospace;
  margin: 0;
}

.navbar {
	background-color: #789388;
	height: 100px;
	margin: 20px;
	border-radius: 16px;
	padding: 0.5rem;
  margin-bottom: 100px;
  
}

.logo-img {
	border-radius: 20%;
}

.navbar-brand {
	font-size: 24px;
}

.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: black;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #333333;
}

.offcanvas {
	background: #fff;
}

@media (min-width: 991px) {
  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #78938A;
    visibility: hidden;
    transition: 0.3s ease-in-out;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
    width: 100%;
    visibility: visible;
  }
}

.btn {
    background-color: #789388;
    border: none;
}

.btn:hover {
  background-color: #70827E;
  border: none
}

.form-area {
  margin-bottom: 150px;
}

.yoga-alliance {
	width: 150px;
	height: 100px;
	padding-top: 50px
}