/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Outer background styling */
.all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #1c1f26,
    #243447
  ); /* Blackish-to-dark blue */
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Inner background styling for Home */
.inner-background {
  padding: 20px;
  background: #2a2f38; /* Dark gray-blue */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
  text-align: center;
}

/* Icon styling */
.icon {
  font-size: 120px; /* Bigger icon */
  color: #48ff00; /* Bright green */
  margin-bottom: 10px;
}

/* Text styling for title and subtitle */
h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Button container */
.btn-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Button styling */
.btn {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #48ff00, #00ffd5); /* Vibrant gradient */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out; /* Smooth interactions */
  box-shadow: 0 4px 15px rgba(0, 255, 213, 0.4); /* Subtle glow effect */
}

/* Button hover effect */
.btn:hover {
  background: linear-gradient(135deg, #00ffd5, #48ff00); /* Reverse gradient */
  transform: scale(1.05); /* Slight scaling for emphasis */
  box-shadow: 0 6px 20px rgba(0, 255, 213, 0.6); /* Stronger glow */
}

/* Button active effect */
.btn:active {
  transform: scale(0.95); /* Slight shrink effect */
  box-shadow: 0 3px 10px rgba(0, 255, 213, 0.3); /* Reduced glow */
}

/* Glowing effect animation for button hover */
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}
