a {
  color: rgba(255, 20, 147); /* change to desired color */
}

a:hover {
  color: rgba(179, 19, 104); /* color when hovered */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

  ul li a {
    color: rgba(255, 20, 147); /* Change this to your desired color */
    text-decoration: none; /* Remove underline if desired */
  }

  /* CSS styles for link hover state */
  ul li a:hover {
    color: rgba(252, 70, 167); /* Change this to the hover color you want */
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 0px 50px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
	flex-shrink: 0;
}

.profile-photo-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.name-bio {
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 768px) {
    .profile {
        flex-direction: row;
    }

    .profile-photo {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .name-bio {
        text-align: left;
    }
}


.name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.counter-link {
    text-decoration: none;
}

.counter {
    color: yellow;
    font-size: 24px;
    font-weight: bold;
    margin-left: 5px;
}

.bio {
    font-size: 18px;
    margin: 0;
}

.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    background-color: #333;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
	margin-right: 25px; 
    margin-left: 25px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
	max-width: 1300px;
	width: 100%; 
	
}

.button:hover {
    background-color: #444;
}

.link-image {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.link-image img {
    width: 100%;
    height: auto;
}

.button-text {
    font-size: 18px;
    line-height: 1.5;
}

.button-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-container {
    max-width: 1200px; /* Same max-width as .container */
    margin: 0 auto; /* Center the menu-container */
    padding: 0px; /* Some padding around the menu bar */
	margin-top: 5px;
	margin-bottom: 50px;
}

.menu {
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    padding: 0px;
    background-color: #1110; /* Black background */
    border-radius: 25px; /* Rounded rectangle */
    margin: 20px 1px; /* Some margin on top and bottom */
}

.menu-button {
    color: rgba(255, 20, 147); /* Same color as animated background numbers */
    text-decoration: none;
    font-size: 18px; /* Adjust as needed */
    padding: 10px 20px; /* Adjust as needed */
    border-radius: 25px; /* Rounded buttons */
    background-color: #333; /* Same color as main buttons */
    transition: background-color 0.3s ease; /* Smooth color transition on hover */
    margin-right: 35px; /* 35 pixels gap between buttons */
	border: 2px solid #333;
}

.menu-button:hover {
    background-color: #444; /* Darker color on hover */
}


.blog-post {
    background-color: #3338; /* Same color as main buttons */
    border: 1px solid #444; /* Same border as main buttons */
    padding: 15px;
    border-radius: 25px; /* Rounded rectangle */
    margin-bottom: 20px;
    max-width: 1700px;
    width: 100%; /* This ensures the blog post takes up the full width up to the maximum */
}

.post-content {
    font-size: 18px;
    line-height: 1.5;
}

.bullet-points {
    list-style-type: none; /* This removes the default bullet points */
}

.bullet-points li:before {
    content: "\2022"; /* This is the Unicode character for a bullet point */
    color: #FFF; /* This sets the color of the bullet point */
    font-weight: bold; /* This makes the bullet point bold */
    display: inline-block; /* This allows us to add space before the item text */
    width: 1em; /* This adds space before the item text */
    margin-left: -1em; /* This brings the bullet point into the left margin */
}