* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.main {
    padding:1em 2em;
    width: 85vw;
    background: snow;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    text-align: justify;
    width: fit-content;

}

.article_close {
  position: fixed;
  right: 0;
  top: 50%;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 1rem;
  font-weight: 100;
  background-color: #0a0a0a;
  z-index: 4;
  color: #fff;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

.article_close:hover {
  color:#4CCEE8;
}

h3 {
  text-align: right;
}

h2 {
  text-transform: uppercase;
}

@import url(https://fonts.googleapis.com/css?family=Raleway);

*, *:before, *:after{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
}

body{
  width: fit-content;
  background: snow;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
}

.main-title{
  color: #2d2d2d;
  text-align: center;
  text-transform: capitalize;
  padding: 0.7em 0;
}

.container{
  padding: 1em 0;
  width: 100%;
}

.multiple-img {
  display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
  
  }

@media screen and (max-width: 640px){
  .container{
    display: block;
    width: 100%;
  }
  
.multiple-img {
  flex-direction: column;
}
}



@media screen and (min-width: 700px){
  .container{
    width: 100%;
  }

  .multiple-img {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  
  }
}

.container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 1;
}

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  
}

.content-details p{
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom{
  top: 80%;
}


