* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.shapes {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Traingle */
.box {
  width: 0px;
  height: 0px;

  border-top: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 100px solid lightsalmon;
  border-left: 100px solid transparent;

  transform: translateX(-100px) translateY(-100px) rotate(-45deg);
}

/* Heart */
.heart {
  position: relative;

  width: 200px;
  height: 160px;
}
.heart:before,
.heart:after {
  position: absolute;
  content: "";

  width: 100px;
  height: 160px;
  left: 100px;

  background-color: tomato;

  border-radius: 100px 100px 0 0;

  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.heart:after {
  left: 0;

  transform-origin: 100% 100%;
  transform: rotate(45deg);
}

/* magifying */
.magnifying-glass {
  position: relative;

  width: 100px;
  height: 100px;

  box-sizing: border-box;
  background-color: aliceblue;

  border: 15px solid slategray;
  border-radius: 50%;
}
.magnifying-glass:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;

  width: 50px;
  height: 15px;
  background-color: slategray;

  border-radius: 0 7.5px 7.5px 0;

  transform-origin: 0 50%;
  transform: translateX(100%) rotate(45deg);
}
