body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Impact, sans-serif; /* Set font family to Impact */
}

a {
    text-decoration: none;
    color: white;
}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(background.JPG); /* Adjust the path to your image */
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.5); /* Adjust opacity and color as needed */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Adjust text color as needed */
    text-align: center; /* Center align the text */
}

.content h1 {
    font-size: 4em; /* Adjust the font size to 4em */
    color: white; /* Set the text color */
    text-shadow: 
        -3px -3px 0 black,  
         3px -3px 0 black,
        -3px  3px 0 black,
         3px  3px 0 black; /* Create a black shadow around the text */
}


.top-left-div {
    position: fixed;
    top: 0;
    left: 0;
    color: #fff;
    text-shadow: 
        -3px -3px 0 black,  
         3px -3px 0 black,
        -3px  3px 0 black,
         3px  3px 0 black; /* Create a black shadow around the text */
    font-size: 2em;
    margin: 1em;
    padding: 1em;
}
  

.top-right-div {
    position: fixed;
    top: 0;
    right: 0;
    color: #fff;
    text-shadow: 
        -3px -3px 0 black,  
         3px -3px 0 black,
        -3px  3px 0 black,
         3px  3px 0 black; /* Create a black shadow around the text */
    font-size: 2em;
    margin: 1em;
    padding: 1em;
}

.bottom-left-div {
    position: fixed;
    bottom: 0;
    left: 0;
    color: #fff;
    text-shadow: 
        -3px -3px 0 black,  
         3px -3px 0 black,
        -3px  3px 0 black,
         3px  3px 0 black; /* Create a black shadow around the text */
    font-size: 2em;
    margin: 1em;
    padding: 1em;
}

.bottom-right-div {
    position: fixed;
    bottom: 0;
    right: 0;
    color: #fff;
    text-shadow: 
        -3px -3px 0 black,  
         3px -3px 0 black,
        -3px  3px 0 black,
         3px  3px 0 black; /* Create a black shadow around the text */
    font-size: 2em;
    margin: 1em;
    padding: 1em;
}

.meat-rain {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-image: url(meat.png);
    background-size: 100px; /* Adjust the size of the meat images */
    background-repeat: repeat; /* Allow meat images to repeat in both directions */
    animation: meatRain 5s linear infinite; /* Adjust the animation duration for faster raining */
}

.meat-rain div {
    width: 100%;
    height: 100%;
    background-image: url(meat.png);
    background-size: 100px; /* Adjust the size of the meat images */
    background-repeat: repeat; /* Allow meat images to repeat in both directions */
    animation: meatRain 7s linear infinite; /* Adjust the animation duration for faster raining */
}

@keyframes meatRain {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0px 666px; /* Increase the distance for faster raining */
    }
}

/* Existing CSS */

/* Add media query for responsiveness */
@media screen and (max-width: 768px) {
    .top-left-div, .top-right-div, .bottom-left-div, .bottom-right-div {
      font-size: 1em;
      text-align: center;
      text-shadow: 
        -2px -2px 0 black,  
         2px -2px 0 black,
        -2px  2px 0 black,
         2px  2px 0 black; /* Create a black shadow around the text */
    }
    
    .top-left-div {
      top: 0%; /* Adjust the percentage for vertical positioning */
      left: 15%; /* Adjust the percentage for horizontal positioning */
    }
    
    .top-right-div {
      top: 10%; /* Adjust the percentage for vertical positioning */
      left: 0%; /* Adjust the percentage for horizontal positioning */
    }
    
    .bottom-left-div {
      bottom: 20%; /* Adjust the percentage for vertical positioning */
      left: 5%; /* Adjust the percentage for horizontal positioning */
      font-size: 0.8em;
    }
    
    .desc-title {
        font-size: 1.5em;
    }

    .bottom-right-div {
      bottom: 5%; /* Adjust the percentage for vertical positioning */
      font-size: 0.8em;
      text-align: center;
    }
  
    /* Add space between top and bottom texts */
    .top-left-div, .top-right-div {
      margin-bottom: 1em; /* Adjust the value to increase or decrease space */
    }
  }
  
  /* Existing CSS */
  