/* General reset and styling */
* {
    margin: 10;
    padding: 10;
    box-sizing: flex;
}

/* Body and overall background */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #00d9ff;
    margin: 10;
}

/* Link tree container */
.link-tree-container {
    background-color: #00d9ff;
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    

    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

/* Profile section */
.profile-section {
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Links section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Styling for each link */
.link {
    display: block;
    text-decoration: none;
    padding: 12px;
    background-color: #007bff;
    color: rgb(0, 0, 0);
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #ffffff;
}

h1 {
    margin-top: 10px;
    font-size: 24px;
}

p {
    font-size: 16px;
    color: #0a0000;
}
 
footer {
    display: block;
    color: #0a0000;
  }

  b{
    color: #007bff;
  }

a { color: #000000;

}  

/* Donation section*/
a {
color: rgb(0, 47, 255);

text-decoration: none;

}



/*footer section */
a {

    color:#000000
    
}
