* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.6s ease;
}

body {
  height: 100dvh;
  width: 100dvw;
  display: flex;
  overflow: hidden;
  background-color: #000;
}

.projeto {
  cursor: pointer;
  height: 100%;
  flex: 1;
  overflow: hidden;
  position: relative;
}
.projeto:hover {
  flex: 0 0 50%;
}
.projeto:hover .fundo {
  transform: scale(1.1);
}
.projeto::after {
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.projeto .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.projeto .fundo {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sharpdevelopers {
  position: absolute;
  z-index: 9;
  bottom: 2.5%;
  left: 50%;
  transform: translateX(-50%);
}
.sharpdevelopers img {
  width: 250px;
  display: block;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .projeto {
    width: 100%;
  }
  .projeto:hover {
    width: initial;
  }
  .projeto .logo {
    padding: 20px;
  }
  .sharpdevelopers img {
    width: 150px;
  }
}/*# sourceMappingURL=style.css.map */