@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #0c0f17;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    transition: background 0.5s, color 0.5s;
    flex-direction: column;
}

/* Dark Mode */
.dark-mode {
    background: #ffffff;
    color: #0c0f17;
}

/* Brand Name */
.brand {
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #2ecc71;
}

/* Dark Mode Button */
#dark-mode-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    border: none;
    width: 45px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

#dark-mode-toggle:hover {
    background: #27ae60;
}

.container {
    max-width: 600px;
}

/* Profile Circle Animation */
.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #2ecc71;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    position: relative;
    animation: glow 2s infinite alternate;
}

.profile-img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px #2ecc71; }
    100% { box-shadow: 0 0 20px #2ecc71; }
}

h1 {
    font-size: 32px;
    font-weight: bold;
}

h1 span {
    color: #2ecc71;
}

p {
    font-size: 14px;
    color: #bbbbbb;
    margin-top: 10px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: #ffffff;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2ecc71;
}

/* Blinking Cursor */
.cursor {
    color: #2ecc71;
    font-size: 32px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.info{
    color: black;
}

.social a {
    color: #0c0f17;
}

a{
    text-decoration: none;
    color: inherit;
}