* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Barlow Semi Condensed', sans-serif;
}
img {
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none;
  color: #000;
}
.grid {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}
.item {
  max-width: 542px;
  max-height: 635px;
  position: relative;
  transition: transform 0.5s;
}
.item:hover {
  transform: scale(1.1);
  z-index: 1001;
} 

.button {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  left: 2rem;right:2rem;
  z-index: 999;
  background: rgba(245, 245, 245, 0.7);
  padding: 0.3rem;
  font-size: 2rem;
  text-align: center;
  border-radius: 28px;
  border: 1px solid #333;

  transition: all 0.5s;
   -webkit-transform: translatey(-50%);
   transform: translatey(-50%);
}
.button:hover{
    box-shadow: 0 14px 22px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background: rgba(245, 245, 245, 1.0);
 }

.social-icons {
  display: flex;
  justify-content: center;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 22px;
}

.icon-linkedin svg {
  fill: #0077B5;
}

.icon-instagram svg {
  fill: #E1306C;
}

.icon-facebook svg {
  fill: #3B5998;
}