body {
    font-family: sans-serif;
    background-color: #0b0d13;
    color: #e2e8f0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
html {
    scroll-behavior: smooth;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #ff007f;
    font-weight: bold;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
}


section {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    color: #ff007f;
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
}

.My_bio {
    max-width: 450px;
    background-color: #141822;
    padding: 24px; 
    border-radius: 12px; 
    border: 2px solid #ff007f;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.My_bio p {
    line-height: 1.6;
    font-size: 16px;
}

.My_card {
    width: 100%;
    max-width: 450px;
    background-color: #141822;
    border: 2px solid #ff007f;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
    box-sizing: border-box;
}

.text {
    font-size: 35px;
    color: #ff007f;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

.project-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.project-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-story {
    font-size: 14px;
    line-height: 1.5;
    color: #a0aec0;
    border-left: 2px solid #ff007f;
    padding-left: 12px;
    margin-bottom: 20px;
}

.project-story a {
    color: #ff007f;
    text-decoration: none;
}

.project-story a:hover {
    text-decoration: underline;
}

.project-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.project-link {
    display: inline-block;
    color: #ff007f;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff007f;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.2s;
    background-color: transparent;
}

.project-link:hover {
    background-color: #ff007f;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

footer {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #57606a;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px; 
    margin-top: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: transform 0.2s, filter 0.2s;
}

.social-links svg {
    width: 100%;
    height: 100%;
    fill: #ff007f;
}

.social-links a:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.7));
}

.project-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}
