@import url("https://fonts.googleapis.com/css?family=Palanquin:300,400,500,600");
html,
body {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  
  color: #333;
  font-family: "Palanquin", Helvetica, sans-serif;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: #46b6d6;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #268caa;
}
a:focus, a:active {
  color: #1c6a80;
}

.card {
  width: 90%;
  background-color: #fff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 480px) {
  .card {
    width: 70%;
    max-width: 760px;
  }
}
.card__sharing {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: 30px 0 15px;
}
.card__social {
  display: -webkit-box;
  display: flex;
}
.card__social-icon {
  margin-left: 1.5em;
  font-size: 1.3rem;
}
.card__info {
  margin: 0 auto;
  max-width: 500px;
  padding: 6% 8%;
}
@media (min-width: 768px) {
  .card__info {
    padding: 4% 10%;
  }
}
.card__author {
  font-weight: 300;
  font-size: 1.05rem;
}
.card__title {
  margin: 0.5em 0 0.7em;
  font-size: 1.3rem;
  font-weight: 500;
}
.card__description {
  font-weight: 300;
  line-height: 1.4;
  color: #828282;
}
.card__timestamp {
  display: -webkit-box;
  display: flex;
  color: #828282;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 1;
  color: #d2d1d1;
  letter-spacing: 1px;
}
.card__timestamp-icon {
  margin-right: 0.5em;
  font-size: 1.3em;
  line-height: 1;
}

.video {
  width: 100%;
  background: url("img/fondovideo.png") center/cover no-repeat;
}
.video__container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.video__placeholder {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/fondovideo.png") center/cover no-repeat;
}
.video__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}