/* START FLEXBOX LAYOUT */
.contentor_blog {
  /*margin-top: 100px;*/
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

}

.coluna {
  flex: 1 0 50%;

  max-width: fit-content;
  padding: 10px;
  margin-top: 50px;

  flex-basis: 700px;
  flex-grow: 1;
  flex-shrink: 0;

}

.coluna_1 {
  backdrop-filter: blur(3px);
  margin-top: 100px;
}

.ordem {
  margin-right: auto;
  margin-left: auto;

  margin-top: 5px;
}

@media only screen and (max-width: 1085px) {
  .coluna {
    flex: 100%;
  }

  .ordem {
    order: -1;
  }

}

/* END FLEXBOX LAYOUT */

html {
  box-sizing: border-box;
  color: #b9bcbd;
  font-family: 'Abel', sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
  background: url('/assets/andrei-tanase-1271619.jpg') no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  padding: 2.1875em;
}

p {
  font-size: 95%;
  font-weight: 300;
  margin-bottom: 1.375em;
}

.photo-card {
  background-color: #2d3638;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;

  max-width: 600px;

  margin-top: 75px;
}

@media screen and (min-width: 700px) {
  .photo-card {
    flex-direction: row;
  }
}

.photo-background {
  background-position: center;
  background-size: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-height: 250px;
}

@media screen and (min-width: 700px) {
  .photo-background {
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    min-height: none;
    width: 50%;
  }
}

.photo-details {
  padding: 2.1875em 5%;
}

@media screen and (min-width: 700px) {
  .photo-details {
    width: 50%;
  }
}

.photo-details h1,
.photo-details h4 {
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.photo-details h1 a {
  color: #dbd9db;
  text-decoration: none;
}

.photo-details h4 {
  font-size: 75%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.photo-author {
  color: #b9bcbd;
  display: block;
  font-size: 75%;
  text-transform: uppercase;
}

.photo-author a {
  color: #b098a4;
}

.photo-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.375em;
}

.photo-meta .equipment,
.photo-meta .resolution {
  width: 48.75%;
}

.photo-meta .equipment ul,
.photo-meta .resolution ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 87.5%;
}

.photo-tags ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 87.5%;
  margin-top: 0.35em;
  text-transform: lowercase;
}

.photo-tags li {
  margin: 0 0.35em 0.35em 0;
  background-color: #191e20;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 0.3125em 1.25em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.data {
  border-radius: 10px 0 0 0;
  background: #FF4081;
  display: inline-block;
  color: #FFFFFF;
  padding: 10px;
  position: relative;
  top: 0;
  right: 0;
}



/* titulo*/


.title {
  color: #2d3638;
  font-size: 12vh;
  position: sticky;
  text-align: center;
  border-bottom: 1px solid #ccc;
  margin-top: -10px;

  position: sticky;
  top: 0;
}

@media screen and (min-width: 700px) {
  .site-title {
    justify-content: flex-start;
    position: -webkit-sticky;
    position: sticky;
    margin-top: -150px;

  }

}