body {
  margin: 0;
  padding: 0;
  background-image: url("givebg.png");
  background-size: cover; /* Ensures the background image covers the whole screen */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  height: 100vh;
  font-family: Arial, sans-serif;
}
/* Container to hold the photo and button */
.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Style for the image container */
.photo {
    position: relative;
    width: 100%; /* Adjust based on your image size */
    height: auto; /* Adjust based on your image size */
    margin-bottom: 20px; /* Space between image and button */
}

.photo img {
    width: 100%;
    height: auto; /* Ensures the image covers the container */
}

/* Style for the button group */
.button-group {
    display: flex;
    justify-content: center;
    width: 100%;
}

         
.btn-grad {
    background-image: linear-gradient(to right, #ee0979 0%, #ff6a00  51%, #ee0979  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    border: 2px solid #fff;
    font-weight: 800;
  }

  .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
 
  .giveway-text {
    padding: 5px;
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    font-weight: 600;
  }