* {
  margin: 0;
  padding: 0;
}

.content {
  display: block;
}

.wrapper-background-smaller-device {
  display: none;
}

body {
  background-image: url("../img/wall_edc_page.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}
body .opacity-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.wrapper {
  position: absolute;
  width: 650px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  perspective: 1000px;
  z-index: 5;
}
.wrapper .frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url("../img/edc_back.jpg");
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: 1s;
  box-shadow: 0px 0px 8px black;
  border-radius: 6px;
}
.wrapper .frame .sculpture {
  width: 100%;
}
.wrapper .bubble_1 {
  position: absolute;
  right: 5px;
  top: 10px;
  width: 30px;
  transition: 1s;
}
.wrapper .bubble_2 {
  position: absolute;
  right: 180px;
  top: 60px;
  width: 30px;
  transition: 1s;
}
.wrapper .green_bubble {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 25px;
  transition: 1s;
}
.wrapper .edc_logo {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 140px;
  transition: 1s;
}
.wrapper:hover {
  cursor: pointer;
}
.wrapper:hover .frame {
  background-position-x: 100%;
  transform: rotateY(20deg) rotateZ(-6deg);
  box-shadow: -8px 8px 8px black;
}
.wrapper:hover .edc_logo {
  transform: translateX(-40px) scale(1.1);
}
.wrapper:hover .bubble_1 {
  transform: translateX(-40px) translateY(-15px) scale(1.2);
}
.wrapper:hover .bubble_2 {
  transform: translateX(-50px) translateY(-15px) scale(0.8);
}
.wrapper:hover .green_bubble {
  transform: translateX(-50px) translateY(-6px);
}

.object {
  z-index: 1;
}

.back-home {
  position: absolute;
  z-index: 5;
  padding: 1rem;
  border-radius: 50%;
  margin: 1rem;
  border: none;
  background: #7c7c7c;
  transition: 0.2s;
}
.back-home .fas {
  font-size: 1.3rem;
  color: lightgray;
}
.back-home:hover {
  cursor: pointer;
  box-shadow: 0 0 10px white;
  background: #5a5a5a;
}

@media only screen and (max-width: 768px) {
  .wrapper {
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 425px) {
  .wrapper {
    width: 400px;
    height: 200px;
  }
  .wrapper .edc_logo {
    top: 10px;
    right: 45px;
    width: 80px;
  }
}
@media only screen and (max-width: 375px) {
  .content {
    display: none;
  }

  .wrapper-background-smaller-device {
    display: block;
  }
  .wrapper-background-smaller-device .bg-small-dev {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: right;
    z-index: 1;
  }
  .wrapper-background-smaller-device::before {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  .wrapper-background-smaller-device .author {
    text-decoration: none;
    color: rgba(230, 228, 228, 0.541);
    position: absolute;
    bottom: 0.5rem;
    font-size: 0.5rem;
    text-align: center;
    width: 100vw;
    z-index: 3;
  }
  .wrapper-background-smaller-device .msm {
    position: absolute;
    text-align: center;
    color: #fff;
    z-index: 3;
    margin-top: 50vh;
    padding: 1rem;
    width: calc(100% - 2rem);
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=styles.css.map */
