img {
  overflow: hidden;
  border-radius: 0.1rem;
  margin-bottom: 0rem;
  background-color: #fff3f3;
  padding: 0.1rem;
  cursor: pointer;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .2s;
  transition: .2s;
}

img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.bodyBackground {
  background-image: -webkit-gradient(linear, left bottom, right top, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.7)));
  background-image: linear-gradient(to right top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7));
  position: relative;
  width: 60%;
  height: 600px;
  -webkit-box-shadow: 0 5px 15px rgba(20, 20, 20, 0.8);
          box-shadow: 0 5px 15px rgba(20, 20, 20, 0.8);
  border-radius: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 100px;
}

.btnFixed {
  position: fixed;
  right: 3rem;
  top: 3rem;
}
/*# sourceMappingURL=main.css.map */