
.box{
  background: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: -1px 1px 6px rgb(21,221,125,0.7);
}
.box .content{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 10px;
}
.box .titleop{
  text-align: left;   
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  margin: 1em auto 1em;
}
.box .description{
  text-align: justify;   
  font-size: 14px;
  font-weight: 500;
  color: #003366;
  font-style: italic
}
.box .info .name{
  font-weight: 600;
  font-size: 14px;
  color: #003366;
    text-align: left;   
}
.box .info .arroba{
  font-weight: 400;
  font-size: 14px;
  color: #fff;
    text-align: left;   
}
.box .info .url{
  font-weight: 400;
  font-size: 14px;
  color: #003366;
  text-align: left;   
}
.box .info .stars{
  margin-top: 2px;
    text-align: left;   
}
.box .info .stars i{
  color: #ffa500;
}
.box .content .image{
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #00bfff;
  border-radius: 70%;
}
.content .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.box:hover .content .image img{
  border-color: #fff;
}

