/*
.Caracteristicas{
    color: #fff;
}

  .contenedor{
    width: 160px;
    border:solid 2px  #000;
             }
  .img-ts{
     width: 150px;
     height: 200px;
         }*/

div ul li h4{
    color: greenyellow;
}
h5{
    color:rgb(64, 175, 248);
}
.grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    grid-template-rows: minmax(500px, auto)
}
.nested-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 240px;
}
.nested-grid > div{
    background:aliceblue;
    padding: 1em;
}
.grid > div{
    background:aliceblue;
    padding: 1em;
}
.nested1-grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-auto-rows: 300px;
}
.form-container{
    position: relative;
    top: 5vh; 
    background: #fff;
    padding: 20px;
    border-radius: 19px;
    box-shadow: 0px 0px 10px 0px #000;    
}
.farfa-user{
  position: absolute;
  left: 100px;

}
.form-container2{
    position: center;
    top: 5vh; 
    background: #fff;
    padding: 20px;
    border-radius: 19px;
    box-shadow: 0px 0px 10px 0px rgb(16, 17, 19); 
}
/*.strong{
    color:rgb(19, 17, 17);
}*/
.just-padding {
    padding: 15px;
}

