html,
body {
  height: 100%;
}

.carousel,
.item,
.active {
  height: 100%;
}

.carousel-inner {
  height: 100%;
  background-color: rgb(107, 222, 31);
}

.carousel-caption {
  padding-bottom: 40px;
}

h2 {
  font-weight: 800;
  font-size: 35px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
  color: #66cc33;
}

p {
  padding: 2px;
  font-weight: 800;
  font-size: 30px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
  color: #66cc33;
}

p i {
  opacity: 0.8;
}

.carousel-control span {
  color: #dff3d5;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  opacity: 0.9;
}


.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  opacity: 0.7;
}

.btn-transparent:hover {
  background-color: #66cc33;
  opacity: 1;
}

.btn-rounded {
  border-radius: 70px;
  background-color: #66cc33;
}

.btn-large {
  padding: 3px 50px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
 
.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}