.latestTweets {
  display: none;
  margin-bottom: 160px;
  position: relative;
}

.latestTweets-twitterLogo {
  position: absolute;
  top: -20px;
  left: -40px;
}

.latestTweets h2 {
  color: #222;
  line-height: 46px;
  font-size: 48px;
  padding: 0 0 10px 65px;
  text-transform: uppercase;
}

.latestTweets-list {
  background: rgba(29, 151, 242, 0.1);
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  padding: 20px;
}

.tweet-wrapper:nth-child(1) {
  transform: rotate(-2deg);
}

.tweet-wrapper:nth-child(2) {
  transform: rotate(2deg) translate(0, 6px);
}

.tweet-wrapper:nth-child(3) {
  transform: rotate(-2.5deg);
}

a.tweet-text {
  background: rgba(29, 151, 242, 0.5);
  box-shadow: none;
  border: 0;
  color: #134f75;
  margin: 0 10px;
  max-width: 100%;
  padding: 5px 15px 15px;
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}

a.tweet-text:hover {
  transform: scale(1.05);
}


@media screen and (max-width: 768px) {
  .latestTweets h2 {
    font-size: 32px;
  }

  .latestTweets-list {
    flex-direction: column;
  }

  .tweet-wrapper {
    position: relative;
  }

  .tweet-wrapper:nth-child(1) {
    top: -5px;
    left: -5px;
    transform: rotate(-1.5deg);
  }

  .tweet-wrapper:nth-child(2) {
    right: -5px;
    transform: rotate(1.5deg) translate(0, 0);
  }

  .tweet-wrapper:nth-child(3) {
    bottom: -3px;
    left: -5px;
    transform: rotate(-1.5deg);
  }

  .tweet-text {
    margin: 10px 0;
  }
}
