* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the content */
}

.header {
    width: 100%;
    padding: 20px;
    background: #fff; /* white background */
}

.logo {
    width: 100%; /* Larger logo */
}

.profile-card {
    background: #fff;
    margin: 20px;
    padding: 20px;
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
    border-radius: 10px;
    width: 100%; /* Full width of the container */
    display: flex;
    justify-content: space-between; /* Separates the image and text */
}

.profile-content {
    display: flex;
    align-items: center;
}
/*
.profile-image img {
    width: 100px; 
    height: 100px;
    border-radius: 50%;
}*/
.profile-image {
    width: 100px; /* Adjust width as needed */
    height: 100px; /* Adjust height as needed */
    border-radius: 50%; /* Makes the div circular */
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #00B4DB, #0083B0); /* Gradient background */
    overflow: hidden; /* Ensures no overflow of the image outside the circle */
}

.profile-image img {
    width: 83%; /* Slightly smaller than the container to ensure padding */
    height: auto; /* Maintains aspect ratio */
    border-radius: 50%; /* Also makes the image circular */
}


.profile-info {
    margin-top: 20px;
    text-align: left;
    margin-left: 20px; /* Space between image and text */
}

.name {
    font-size: 24px; /* Larger text */
    color: #333;
}

.followers {
    font-size: 16px;
    color: #666;
    text-decoration: none; /* Removes underline */

}

.social-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.social-button {
    background: linear-gradient(to right, #00B4DB, #0083B0); /* Gradient background */
    color: #fff;
    border: none;
    padding: 10px;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.footer {
    margin-top: 50px;
    color: #666;
    font-size: 14px;
    padding: 15px 0;
    background: #fff;
    width: 100%;
}

.custom-button {
    background: linear-gradient(to right, #00B4DB, #0083B0); /* Gradient background */
    color: white; /* Text color */
    border: none; /* No border */
    padding: 10px 20px; /* Padding around text */
    border-radius: 25px; /* Rounded corners */
    font-family: Arial, sans-serif; /* Font style */
    font-size: 16px; /* Text size */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center text horizontally */
    cursor: pointer; /* Pointer cursor on hover */
    outline: none; /* Remove focus outline */
    transition: background 0.3s ease; /* Smooth transition for hover effect */
}

.custom-button i {
    margin-right: 5px; /* Space between icon and text */
}

.custom-button:hover {
    background: linear-gradient(to right, #0083B0, #005670); /* Darker gradient on hover */
}

.share-button {
    margin-top: 20px;
    margin-bottom: 20px;
    background: none; /* No background */
    color: #0066cc; /* Light blue color */
    border: 2px solid #0066cc; /* Light blue border */
    padding: 8px 16px; /* Padding around text */
    border-radius: 20px; /* Rounded corners */
    font-family: Arial, sans-serif; /* Font style */
    font-size: 16px; /* Text size */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center text horizontally */
    cursor: pointer; /* Pointer cursor on hover */
    outline: none; /* Remove focus outline */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.share-button i {
    margin-right: 5px; /* Space between icon and text */
}

.share-button:hover {
    color: #004a99; /* Darker blue on hover */
    border-color: #004a99; /* Darker blue border on hover */
}
