/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #111; /* Dark background */
    color: white; /* White text color */
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Container Styling */
.container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #222; /* Slightly lighter background for content */
    border-radius: 10px;
}

/* Profile Picture */
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px auto;
    border: 5px solid #444;
}

/* Heading */
h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Typewriter Animation */
#typewriter {
    font-size: 1.3rem;
    color: #bbb;
}

/* Links Section */
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Individual Link Styling */
.links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 10px;
}

/* Icon Styling */
.links a i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* Link Hover Effect */
.links a:hover {
    color: #1e90ff; /* Bright color on hover */
}

/* Footer Styling */
footer {
    margin-top: 30px;
    padding: 20px;
    background-color: #111; /* Black background for footer */
    color: white;
    text-align: center;
    border-radius: 10px;
}

/* Footer Links Styling */
footer a {
    color: #1e90ff; /* Blue color for email link */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .links a {
        font-size: 1rem;
        flex-basis: 45%;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 2rem;
    }

    footer p {
        font-size: 14px;
    }
}



/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #111; /* Dark background for the page */
    color: white; /* White text for contrast */
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Styling for the title container */
#typewriter {
    font-size: 2rem; /* Larger text size for the title */
    font-weight: bold;
    color: red; /* Red color for the titles */
    display: inline-block;
    border-right: 3px solid #fff; /* A blinking cursor effect */
    padding-right: 5px; /* Add space between the text and the blinking cursor */
    animation: blink 0.75s step-end infinite; /* Blinking cursor animation */
    white-space: nowrap; /* Prevent the title from wrapping */
}

/* Blinking cursor effect */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Adjust text size for smaller screens */
@media (max-width: 600px) {
    #typewriter {
        font-size: 1.5rem; /* Smaller font size for mobile devices */
    }
}



