body{
	margin: 0px;
	padding: 0px;
	background-color: #155b44;
	overflow-x: hidden;
}
img{
	width:100%;
	height:50%;
  	background-repeat:
  	background-size: cover;
  	opacity: 0.9;
 }
.carousel-caption{
 	top: 50%;
 	left:10%;
	transform: translateY(-50%);
 }
 #container {
  text-align: center;
}

#text {
  display: inline-block;
  vertical-align: middle;
  color: #FBBE0C;
  letter-spacing: 3px;
  font-size: 80px;
}

#cursor {
  display: inline-block;
  vertical-align: middle;
  width: 3px;
  height: 110px;
  background-color: #cee8e7;
  animation: blink .75s step-end infinite;
}

@keyframes blink{
  from, to { 
    background-color: transparent ;
  }
  50% { 
    background-color: #cee8e7; 
  }
}
li a h4{
	color: #cee8e7;
	
}
li a h4:hover{
	color:#FBBE0C;
}

@media only screen and (max-width: 966px){
	.carousel-caption{
		top:60%;
		left:15%;
	}
	#text{
		font-size: 30px;
	}
	#cursor{
		height:40px;
	}
}