#trailer {
  background: #35a531;
}

#ladybug {
  position: absolute;
  display: block;
  width: 20em;
  height: auto;
  left: auto;
  top: -1.5em;
  right: -1.5em;
}

#trailertext {
  position: absolute;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 90%;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  text-align: center;
  transform: translate(0, -50%);
}

#trailer .title {
  font-size: 7em;
  line-height: 1.1em;
}

#play {
  display: block;
  width: 7em;
  height: 7em;
  margin-top: 2em;
}

#play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0);
  transition: transform 0.5s ease-in-out;
}

#play:hover img {
  transform: rotate(360deg);
}

@media only screen and (max-width: 1023px) {

  #trailer .title {
    font-size: 6em;
  }
}

@media only screen and (max-width: 767px) {

  #trailer .title {
    font-size: 5em;
  }
}
