
*,
*::before, 
*::after {
    box-sizing: border-box;
}

h1, h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.navbar-brand {
    padding: 10px 20px;
    border-radius: 12px;
    color: #077c32;
    transition: .5s;
    border: 2px solid rgba(7, 124, 50, 0.2);
    
  }
  
  .navbar-brand:hover {
    color: #fff;
    background-color: #077c32;
    border-radius: 12px;
  }
  
  .nav-link {
    transition: .5s;
    font-size: 1rem;
  }
  
  .nav-link:hover {
    color: #077c32;
  }

.hero-image {
   width: 100%;
}

.hero {
    margin-top: 72px;
}

.lead {
    max-width: 70ch;
}

.bi-flower1:hover {
	-webkit-animation: rotate-center 1.5s ease-in-out both;
	        animation: rotate-center 1.5s ease-in-out both;
}

@keyframes rotate-center {
    0% {
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    50% {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
      }
  }
  

@media only screen and (max-width: 600px) { 
    .content img {
        width: 300px;
    }
  }