/*Style body by adding background image and set it to cover, add font-family*/
body{
    font-family: Arvo, serif;
    background: url(images/greenhydrogen.jpg) no-repeat center center;
/*	background: url(https://freenaturestock.com/wp-content/uploads/freenaturestock-2216-1024x683.jpg) no-repeat center center;*/
    background-attachment: fixed;
    background-size: cover;
}

/*Style brand (Crown)*/
.logo{
   height: 30px; 
}

/*Style navigation bar*/
.navbar-inverse{
    background: rgba(0,0,0,0.5);   
}
.nav li{
    color: #fff;
    font-size: 17px;
    margin-right: 35px;
    padding: 10px 0;
}

.nav li:hover{
    border-bottom: 1px solid #8BC34A; 
    padding-bottom: 9px;
    cursor: pointer;
}

/*Style jumbotron*/
  .jumbotron {
    background-color: transparent!important; 
    color: #fff;
    text-align: left;
    margin: 10px; 
}
         
/*Limit the width of the icons section*/
.container{
    max-width: 1000px;
	text-align: left; /* Añade esta línea para alinear todo a la izquierda */
	margin-left: 0;    /* <-- ADD THIS: Pushes the container to the far left */
    margin-right: auto; /* <-- ADD THIS: Allows it to occupy available space to the right */
    /* You could also use: margin: 0 auto 0 0; */
}


/*Style icons section using bootstrap grid system*/
.bodyimage{
    height: 100px;
}

.col-md-4{
    text-align: left;
    color: #fff;
    
}

.icons p{
    font-size: 15px;
}
/*Style contact button*/
.contact{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 100px;
}

.btn{
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    padding: 10px 70px;
    letter-spacing: 1.3px;
}

.btn:hover{
    background-color: rgba(23, 2, 1, 0.1);
    color: #fff;
    border: none;
}
/*Style footer*/
.footer{
    background-color: rgba(0, 0, 0, 0.5);
/*	background-color: rgba(23, 2, 1, 0.1);*/
    color: grey;
    font-size: 15px;
    padding: 10px 0;
	width: 100%; /* Asegura que ocupe todo el ancho */
    position: fixed; /* Lo fija a la ventana del navegador */
    bottom: 0; /* Lo coloca en la parte inferior */
    left: 0; /* Asegura que esté alineado a la izquierda */
    z-index: 1000; /* Asegura que esté por encima de otros elementos si es necesario */
	text-align: center;
        
}
/*Use media queries to change icons size in small devices*/
@media (max-width: 768px){
    .bodyimage{
        height: 100px;
        
    }

.container h1 {
    color: white;
	text-align: left; 
}
	+
.container h2 {
    color: white;
	
}

	
}