
body {
  background:#000;
  font-family:Lucida Sans;
  padding:0px;
  margin:10px 2%;
  font-size:22px;
  font-weight:bold;
  line-height:0.8em;
  }


*{margin: 0;padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;}

    .contenedorMik{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .contenedor{

        display: flex;
    }
    .contenedor figure{
       position:relative;
        height: 150px;
        cursor: pointer;
        width: 200px;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
    }
    .contenedor figure img{
        width: 100%;
        height: 100%;
        transition: all 400ms ease-out;
        will-change: transform;
    }
    .contenedor figure .capa{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,200,200,0.5);
        transition: all 400ms ease-out;
        opacity: 0;
        visibility: hidden;
       text-align: center;
    }
    .contenedor figure:hover > .capa {
        opacity: 1;
        visibility: visible;
    }
    .contenedor figure:hover > .capa h3{
        margin-top: 70px;
        margin-bottom: 15px;
    }
    .contenedor figure:hover > img{
        transform: scale(1.3);
    }
    .contenedor figure .capa h3{
        color: #fff;
        font-weight: 400;
        margin-bottom: 120px;
        transition: all 400ms ease-out;
         margin-top: 30px;
    }
    .contenedor figure .capa p{
        color: #fff;
        font-size: 15px;
        line-height: 1.5;
        width: 100%;
        max-width: 220px;
        margin: auto;
    }

h1 {
  color: red;
  text-align: center;

}
h2 {
  color: red;
  text-align: center;

}

h3 {
  color: red;
  text-align: center;

}


a {
  text-decoration:none;
  color:#FF0000;            //    #7FFF90
  }

a:hover {
  color:FFD700;              //  008030
  }

a:active {
    color: red;
    background-color: transparent;
    text-decoration: underline;
       }
