@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,700,300i,600i,700i|Raleway:600,800");


body {
  margin: 0;
  height:100%;
  font-family: "Source Sans Pro", Helvetica, sans-serif;

}

.wrapper {
  display: grid;
  grid-template-columns: 50% 100%;
  color: #444;
  height:100vh;
  width:100vw;
  overflow: hidden;
}

.box {
  background-color: #1f1e1e;
  color: #fff;
}

.box img {
  object-fit: cover;
}

.overlay-wrapper {
  position: absolute;
  top: 0;
  min-width: 100vw;
  min-height: 100vh;
}

.overlay {
  display:flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.overlay img {
  width: 20em;
  height: 22em;
  filter: invert(100%);
  mix-blend-mode: difference;
}

.side-button {
  background-color: rgb(37, 37, 37);
  color: white;
  width: 10em;
  position: absolute;
  text-align: center;
  transition: all 0.5s ease;
}

.side-button a {
  text-decoration: none;
  color: white;
}

.side-button:hover {
  transform: scale(1.1);
}

.right {
  right: 0em;
  top: 50%;
  text-align: right;
  padding: 0.5em 2em 0.5em 0.5em;
}

.left {
  left: 0em;
  top:50%;
  text-align: left;
  padding: 0.5em 0.5em 0.5em 2em;
}

.bottom {
  padding: 1em;
  bottom:0em;
}

@media screen and (max-width: 1000px) {
  
  .overlay-wrapper {
    position: absolute;
    top: 0;
    min-width: 100vw;
    min-height: 100vh;
  }

  .overlay {
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
  }


  .overlay img {
    width: 20em;
    height: 22em;
    filter: invert(100%);
    mix-blend-mode: difference;
  }

}