
#portfolio{
	background-color: black;
	text-align: center;
}


.wrapper {
  justify-content: center;
  align-items: center;
  > * {
    margin: 5px;
  }
}

.media {
	background-color: black;
	float: left;
	width: 33%;
	padding: 13px;
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
  img {
      max-width: 100%;
      height: auto;
    }

	#myphoto{
		width: 69%;
	}

	@media only screen and (max-width: 600px) {
		  .media {
		  	width: 100%;
		  }
		#myphoto{
			width: 100%;
		}
		.col-inner{
			    text-align: center;
					text-align: -webkit-center;

		}
		}

.layer {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 90%;
  background: #FFF;
  color: #151E3F;
  transition: all 0.9s ease;
  p {
    transition: all 0.9s ease;
    transform: scale(0.1)
  }
}


.media:hover .layer {
  opacity: 0.8;
  width: 90%;
  transition: all 0.5s ease;
  p {
    transform: scale(1);
    transition: all 0.9s ease;
  }
}
