body {
    font-family: Arial, sans-serif;
    background-color: rgb(19, 20, 24);
    color: rgb(234, 234, 234); /* Updated general text color */
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #F5F5F5;
    margin-top: 100px;
}
.footer {
    background-color: rgb(19, 20, 24);
    color: rgb(136, 138, 143); /* Updated footer color */
    font-size: 0.7em;
    padding: 20px;
    text-align: center;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
}

/* Main content styling */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    height: calc(100vh - 40px); /* Adjust height to remove header/footer space */
    padding-top: calc(100vh / 5); /* Adjust to position content at 1/3rd from top */
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #F5F5F5;
    margin-bottom: 20px; /* Added margin for spacing */
}


#animated-link {
    padding: 5px;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    color: rgb(234, 234, 234); /* Updated color to match general text */
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    font-family: monospace; /* Ensures consistent character width */
}

#animated-link:hover {
    color: rgb(136, 138, 143); /* Updated hover color to match footer */
    border-color: rgb(136, 138, 143); /* Updated border color on hover */
}

.blinking-cursor {
    animation: blink-animation 1s step-start 0s infinite;
    color: rgb(234, 234, 234); /* Updated cursor color */
}

#animated-link:hover .blinking-cursor {
    color: rgb(136, 138, 143); /* Updated cursor color on hover */
}

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