body {
  background-image: url(./assets/austinface.png), url(./assets/austinface2.png);
  background-repeat: repeat;
  background-size: 100px;
}

.bg-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img {
  height: 300px;
  transform-origin: center center;
  animation: swing 2s ease-in-out infinite;}

@keyframes swing {
   0%   { transform: rotate(-45deg); }
   50%  { transform: rotate(45deg); }
   100% { transform: rotate(-45deg); } 
}

.words {
  font-size: 55px;
  font-weight: bold;
  color: yellow;
  text-shadow: 2px 2px 20px black;
}

