body {
    margin: 0;
    font-family: Georgia, Geneva, Tahoma, sans-serif;
    background-image: url("/imagenes/otros/fondomarina.jpeg");
    background-size: cover;
    margin: 0;
    padding: 0;
}


.contenedor {
    min-height: 147vh;
    padding: 30px;
}


h1 {
    text-align: center;
    font-size: 51px;
    margin-bottom: 30px;
}


.contenido {
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

 #textojustificado{
  text-align: justify;
}


.imagen {
    width: 350px;
    height: 250px;
    border-radius: 133px;
    transition: 0.5s;
}



.button
{
   padding: 10px 20px;
  background-color: #21521d;
  color: #ffffff;
  border:none;
  border-radius: 55px;
  cursor: pointer;
  font-size: 21px;
  transition: background-color 0.3s ease;
  
}

.texto {
    color: #000;
    font-size: 25px;
    margin: 50px;
}


body span{
    position: absolute;
    bottom: -50px;
    background: transparent;
    border-radius: 50%;
    
    pointer-events: none;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.5);
    animation: animate 4s linear infinite;
}
body span:before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(0.25)translate(-70%,-70%);
    background: radial-gradient(#fff,transparent);
    border-radius: 50%;
}
    @keyframes animate
    {
        0%
        {
           transform: translateY(0%);
               opacity:1;
        }
        99%
        {
        opacity: 1;    
        }
        100%
        {
           transform: translateY(-1200%);
               opacity:1;
        }
    }    

img:hover{
  transform: scale(1.2);
}
