
.box {
  background: #000; /* Black background */
  color: white;
  padding: 20px;
  border-radius: 12px; /* Rounded corners like in your image */
  border: 2px solid #F01829; /* Red border */
  
  /* Outer glowing effect */
  box-shadow: 0 0 15px #F01829;
  
  width: 300px;  /* Example size */
  font-family: Arial, sans-serif;
}

.floating-btn { 
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 32px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  animation: float 2s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* moves up */
  }
  100% {
    transform: translateY(0); /* back to original position */
  }
}

.hover {
  transition: all 1s ease;
}

.hover:hover {
  transform: translateX(5px);
}

.outline {
  font-family: Arial, sans-serif;
  font-size: 36px; /* adjust as needed */
  color: white; /* main text color */
  
  /* Red glowing shadow effect */
  text-shadow: 
    0 0 5px #F01829,
    0 0 10px #F01829,
    0 0 15px #F01829;
}


