HTML {
  background-color: rgb(201, 236, 130)
}
header{
    background-color: rgb(82, 82, 82);
    color: rgb(187, 150, 55);
    background-image:
      linear-gradient(45deg, #ccc 25%, transparent 25%), 
      linear-gradient(135deg, #ccc 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, #ccc 75%),
      linear-gradient(135deg, transparent 75%, #ccc 75%);
    background-size:120px 120px; /* Must be a square */
    background-position:0 0, 60px 0, 60px -60px, 0px 60px; /* Must be half of one side of the square */
}

.hidden {
  display: none;
}

body {
    transition: 0.5s ease-out;
    background-color: rgb(201, 236, 130);
  }
  
  
  body.darken {
    background-color: rgba(0,0,0,0.5);
  }
  
  img.battle1 {
    transform: scale(1.5) rotate(25deg);
    animation: bump1 1s ease-out 2;
  }

  img.battle2 {
    transform: scale(1.5) rotate(-25deg);
    animation: bump2 1s ease-out 2;
  }
  .card {
    background-color: rgb(156, 197, 73);
  }

  footer {
    background-color: rgb(222, 184, 135);
    padding: 20px;
    text-align: center;
  }
  
  footer p {
    color:rgb(0, 0, 0);
    font-size: 18px;
  }
  .background-image {
    position: fixed;
    top: 27%;
    left: 0;
    width: 25%; /* 3 out of 12 spaces = 25% width */
    height: 100%;
    z-index: 0; /* Ensures the background image stays behind other elements */
}
#fakeAd1 {
  width: 100%;
  height: auto;
  display: block;
}
.background-image2 {
  position: fixed;
  top: 27%;
  right: 0;
  width: 25%; /* 3 out of 12 spaces = 25% width */
  height: 100%;
  z-index: 0; /* Ensures the background image stays behind other elements */
}
#fakeAd2 {
width: 100%;
height: auto;
display: block;
}

  
  @keyframes bump1 {
    0%, 50%, 100% {
      transform: scale(1) rotate(0deg) translateX(0px);
    }
    12.5%, 37.5%, 62.5%, 87.5% {
      transform: scale(1.5) rotate(25deg) translateX(-20px);
    }
    25%, 75% {
      transform: scale(1) rotate(0deg) translateX(0px);
    }
  }
  
  @keyframes bump2 {
    0%, 50%, 100% {
      transform: scale(1) rotate(0deg) translateX(0px);
    }
    12.5%, 37.5%, 62.5%, 87.5% {
      transform: scale(1.5) rotate(25deg) translateX(-20px);
    }
    25%, 75% {
      transform: scale(1) rotate(0deg) translateX(0px);
    }
  }
  
  