.main {
  width: 100%;
  padding-top: 7vh;
}

.title {
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title > h1 {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 300;

  margin-bottom: 2rem;
}

#title-link {
  font-family: "Montserrat";
  text-decoration: none;
  word-spacing: 1em;
}

#title-link > a {
  color: #ebcd1e;
}

/* content */

.content {
  width: 100%;
  padding: 1em;
  margin: 2em 0;
  color:#666;
  font-weight: 300;


}

.content-head{
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: #ccc 1px solid;
}

.content-head > h1{
  color:#666;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
}

.share {
  width: 35%;
  height: 20%;

  display: flex;
  justify-content: space-evenly;
  align-items: center;

}

.share > li {
  width: 1em;
  height: 1em;

  background-color: #ffffff1a;

  color: #666;
  font-weight: bolder;
  font-size: 0.5em;
  text-transform: lowercase;

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;

  cursor: pointer;
}
.share > li:first-child{

  font-weight: 300;
  text-transform: uppercase;
  margin-right: 1em;
}

.content-info{
  padding: 1em 0;
}

.content-info > p{

    font-size: 1rem;
    text-transform: capitalize;
    margin: 1em 0;

}
.content-info > p > strong{
  margin-right: 1em;

}

.content-img {
  width: 100%;
}

.content-img > img {
  width: 100%;
  object-fit: cover;
  margin: 1em 0;

}

.content-nav {
  width: 100%;
  height: 10vh;
  padding: 0 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: #ccc solid 1px;
  border-bottom: #ccc solid 1px;
  margin: 2em 0;
}

.content-nav > a {
  text-transform: uppercase;
  word-spacing: 1em;
  font-weight: 100;
  font-size: 1rem;
  color: #666;
}



@keyframes filter-motion {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* tablet */

@media only screen and (min-width: 680px) {
}

/* desktop */
@media only screen and (min-width: 920px) {
  .title > h1 {
    font-size: 3em;
  }

  /* content */

  .content{
    width: 60%;
    margin: auto;
  }

  .content-nav > a {
    text-transform: uppercase;
    word-spacing: 1em;
    font-weight: 500;
    font-size: 1rem;
  }

  .share > li:hover,  .share > li:hover > svg   {
    fill: #000000;
    color: #000000;
    transition: all 0.4s ease-in-out;
  }
}
