@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  grid-template-rows: repeat(auto-fill, minmax(15rem, 1fr));
  grid-template-columns: 8.125rem 1fr 8.125rem;
  grid-template-columns: auto;
}

/*.headerBk {
  display: grid;
  width: 100%;
  height: 28.125rem;
  background-color: rgb(83, 110, 147);
  justify-content: center;
}*/

.marco {
  /* display: grid;
  grid-template-rows: repeat(auto-fill, minmax(15rem, 1fr));
  grid-template-columns: 1fr 12.5rem 1fr;
  grid-template-areas:
    ". .  photo   .  ."
    ". nombre nombre  nombre ."
    ". descripcion  descripcion descripcion  ."
    ". botones  botones  botones ."
    ". .  datos .  .";
  grid-column-start: 1;
  grid-column-end: 4; */
  width: 37.5rem;

  padding-top: 10%;
  box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
  border-width: 0.25rem;
  border-color: transparent;
  /* filter: drop-shadow(0.5rem 0.5rem 0.5rem black);
  z-index: 1; */
}

/* .marcotop {
  justify-items: center;
  align-items: center;

  :hover {
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.275);
  }
} */

.photo {
  display: flex;
  max-width: 100%;
  justify-items: center;
  align-items: center;
}

#botones {
  /* display: block; */
  color: #ffffff;
  text-align: center;
  margin: 0%;
  gap: 0.125rem;
  border-color: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);

  :hover {
    background-color: rgb(79, 105, 141);
  }
  .boton {
    box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
  }
}

#nombre {
  display: grid;
  grid-column-start: 3 / 4;
  justify-content: center;
  color: rgb(196, 196, 196);
  font-size: 120%;
  padding-top: 0.3125rem;
}

.vcard-body {
  display: grid;
  grid-row-start: 5;
  width: 37.5rem;
  height: 100%;
  position: relative;
  float: left;
  
  padding: 20px 45px 40px;
  box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
}

.nombre {
  display: grid;
  grid-column: 2 / 5;
  justify-content: center;
  color: whitesmoke;
  font-size: 180%;
  padding-top: 0.9375rem;
}

.descripcion {
  display: grid;
  grid-column-start: 3 / 4;
  justify-content: center;
  color: rgb(196, 196, 196);
  font-size: 120%;
  padding-top: 0.3125rem;
}

.header-bar {
    max-with: 100%

    
}