/* Light pastel gradient background */
body {
    font-family: Poppins, sans-serif;
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    color: #333;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Fancy glassmorphism container for the SVG */
#svg-container {
    width: 400px;
    height: 300px;
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
#svg-container:hover {
    transform: scale(1.05);
}

/* Ensure the SVG scales properly */
svg {
    width: 100%;
    height: 100%;
}

button {
    background-color: #007bff; /* Nice blue color */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  button:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  
  button:active {
    background-color: #00408d;
    transform: scale(0.95); /* Slight shrink effect */
  }
  