body {
  margin: 0;
  background: #000000;
}


  #text {
    z-index: 100;
            color: white;
  border-right: solid white 4px;
  height: 35px;
    display: flex;
    
}



.titulo{
color: #FFFFFF;
display: inline-flex;
display: inline-block;
text-align: center;
width: 5%;

}
p{
  color: white;
}
.carrusel {
  height: 100vh;
  display: flex;
  align-items: top;
  z-index: -10;
  
}

.carrusel-items {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 30px 0px;
   
}

.carrusel-item {
  min-width: 300px;
  max-width: 300px;
  height: 200px;
  outline: 2px solid black;
  cursor: pointer;
    
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    
}

.carrusel-item:hover {
  transform: scale(1.2);
  
}



.container-boton{

 
    background-color: #2e6329;
    border: 1px solid #fff;
    position: fixed;
    
   border-radius: 50%;
    bottom: 20px;
    right: 25px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
   
        
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;

}

.boton{
    width: 80px;
    transition: ease 1s;
      z-index: 1;
   
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(144, 238, 144);
    }
}