
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
        body {
            font-family: 'Poppins', sans-serif; /* Poppins font added */
            background-color: #5b4c29; /* White background */
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
            background-size: cover;
            background-position: center;
           
        }

        .panel {
            text-align: center;
            padding: 20px;
            background-color: #fcf0f3; /* White background with opacity */
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Grey shadow */
        }

        h1 {
            color: #5b4c29; /* Dark grey heading color */
        }

        p {
            color: #5b4c29;
            position: relative;
        }

        p::before {
            content: "👈"; /* Unicode character for the hand pointing left */
            position: absolute;
            left: 100%;
            top: 35%;
            transform: translateY(-50%);
            font-size: 18px; /* Adjust the font size as needed */
            margin-left: -45px; /* Adjust the margin for spacing between the icon and text */
        }






        footer {
            margin-top: 20px;
            color: #000; /* Light grey footer text color */
        }

        a {
            color: #5b4c29; /* Blue link color */
            text-decoration: none;
            font-weight: bold;
        }
        
        
        .addtoolsdiv {
   
    
   display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 21px;
    background-color: #fcf0f3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
}
h5 {
    color: #5b4c29;
    font-size: 15px;
}


.button {
    background-color: #5b4c29;
    color: #fff;
    border: none;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative;
    padding-left: 55px; /* Adjusted padding for more space */
}

.button::before {
    content: '\27FF'; /* Unicode character for the tools icon */
    position: absolute;
    left: 10px; /* Adjusted left position for the icon */
    top: 48%;
    transform: translateY(-50%);
    font-size: 25px; /* Increased font size for the icon */
}

.button:hover {
    background-color: #6c757d; /* Hover color */
}


    