.posicion {
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.card {
  display: grid;
  grid-template-columns: 250px;
  grid-template-rows: 50px 200px 80px;
  grid-template-areas: "image" "text" "stats";

  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(255,0,0,0.9);
  font-family: roboto;
  text-align: center;
  

  transition: 0.5s ease;
  cursor: pointer;
  margin:30px;
}
.card-image {
  grid-area: image;
  background: url("images/modelo1.jpg");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-text {
  grid-area: text;
  margin: 25px;
}
.card-text .date {
  color: rgb(0, 0, 0);
  font-size:13px;
}
.card-text p {
  color: red;
  font-size:15px;
  font-weight: 300;
}
.card-text h2 {
  margin-top:0px;
  font-size: 50px;
  color: red;
}
.card-stats {
  grid-area: stats; 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  background: rgb(0, 0, 0);
}
.card-stats .stat {
  padding:10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: red;
}
.card-stats .border {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.card-stats .value{
  font-size:22px;
  font-weight: 500;
}
.card-stats .value sup{
  font-size:12px;
}
.card-stats .type{
  font-size:11px;
  font-weight: 300;
  text-transform: uppercase;
}
.card:hover {
  transform: scale(1.15);
  box-shadow: 5px 5px 15px rgba(255,0,0,0.6);
}

/*card2*/
.card-image.card2 {
  background: url("images/modelo2.jpg");
  background-size: cover;
}
.card-text.card2 .date {
  color: rgb(255, 0, 0);
}
.card-stats.card2 .border {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.card-stats.card2 {
  background: rgb(255, 0, 0);
}
/*card3*/
.card-image.card3 {
  background: url("images/modelo3.jpg");
  background-size: cover;
}
.card-text.card3 .date {
  color: rgb(255, 0, 0);
}
.card-stats.card3 .border {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.card-stats.card3 {
  background: rgb(255, 0, 0);
}
/*card4*/
.card-image.card4 {
  background: url("images/modelo4.jpg");
  background-size: cover;
}
.card-text.card4 .date {
  color: rgb(255, 0, 0);
}
.card-stats.card4 .border {
  border-left: 1px solid rgb(255, 255, 255);
  border-right: 1px solid rgb(255, 255, 255);
}
.card-stats.card4 {
  background: rgb(255, 0, 0);
}

.enlace {
        background-color: red; /* Green */
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;

}
h1¨{
    color: red;
}

.enlace:hover {

}