/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("gifs/backgroundsouthpark1.gif");
  background-repeat: repeat;
  background-attachment: fixed;
  
  }
  
.floating-box {
  /* Basic styling */
  width: 500px;
  height: 400px;
  background-color: purple;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  
  /* Animation properties */
  animation: floating 5s ease-in-out infinite alternate;
}

@keyframes floating {
  0% {
    /* Start position and shadow */
    transform: translateY(0px);
    box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
  }
  100% {
    /* End position (move up 20px) and change shadow */
    transform: translateY(-10px);
    box-shadow: 0 15px 5px 0px rgba(0,0,0,0.2);
  }
}

poop-container {
  width: 88px;
  height: 31px;
  align-items: center;
  }

poop {
  height: 100%;
  width: 100%;
  align-items: center;
  }
  
