body {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    color: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.index {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}
.profile-pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-top: 20px;
    /* border: 2px solid #8B0000; */
}
h1 {
    margin-top: 20px;
    font-size: 2em;
    color: #ffffff;
}
h2 {
    font-size: 1.5em;
    color: #b0b0b0;
    margin-top: 10px;
}
.tagline {
    font-size: 1em;
    margin-top: 10px;
    color: #b0b0b0;
}
.links {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}
.links li {
    margin: 10px 0;
}
.links a {
    color: #8B0000;
    text-decoration: none;
    font-size: 1.2em;
}
.links a:hover {
    text-decoration: underline;
    color: #a30000;
}
