/* 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(background04.jpg);
  background-size: cover ;         /* Makes it fill the screen */
  background-repeat: no-repeat;   /* Stops tiling */
  background-position: ;    /* Keeps it centered */
  font-family: 'Courier New', monospace;
  padding: 2rem;
  color: limegreen;
  text-align: center ;
  line-height: 2 ;
  margin: 0;
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes wobble {
   0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.content-box {
  background-color: black;
  border-top: 4px solid limegreen;
  border-bottom: 4px solid limegreen;
  border-left: 4px solid limegreen;
  border-right: 4px solid limegreen;
  width: 600px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 20px;
}
a {
  color: #66ff66;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px limegreen);
}
a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px white;

}
.floating-gif {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom 2rem;
  animation: wobble 4s ease-in-out infinite;
}