@charset "utf-8";

.container h1 {
    font-family: 'Arial',sans-serif;
}

.container h2 {
    font-family: 'Arial',sans-serif;
}

.top {
    height: 500px;
    background-image: url(../img/portfolio\ top-img.jpg);
    background-size: cover;
}

img {
    width: 100%;
}

h1 {
    position: relative;
    display: inline-block;
    padding: 0 45px;
  }
  h1:before, h1:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    background-color: black;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
  }
  h1:before {
    left:0;
  }
  h1:after {
    right: 0;
  }
