body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

section {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
section .third {
  display: inherit;
  justify-content: center;
  height: 100vh;
  width: 100%;
}
section .third:nth-child(1) {
  background-color: #B52656;
}
section .third:nth-child(2) {
  background-color: #454A59;
}
section .third:nth-child(3) {
  background-color: #34B1E2;
}
section .third svg {
  width: 100%;
  transform: scale(2);
  z-index: 9999;
  pointer-events: none;
  align-self: center;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  section .third svg {
    transform: scale(1);
  }
}
@media screen and (min-width: 1300px) {
  section .third svg {
    transform: scale(3);
  }
}

.drag {
  position: absolute;
  top: 5rem;
  left: 5rem;
}
.drag img.feopaper {
  width: 900px;
  transition: all 1s;
}
@media screen and (max-width: 600px) {
  .drag img.feopaper {
    width: 450px;
  }
}
.drag img.feopaper:hover {
  transform: rotate(-2deg);
  filter: brightness(102%);
}
