body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E1E2E;
    color: white;
    font-family: monospace;
    font-size: 1.3rem;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes up full viewport height */
    margin: 0; /* Remove default margin */
    /* Add padding for small devices */
}

h1 {
    color: #CAA6F7;
    margin: 0;
    font-size: 2rem;
}

h3 {
    color: #CDD6F4;
    font-size: 1.5rem;
}

p {
    color: #A0A7C0;
    font-size: 1.3rem;
}

a {
    text-decoration: none;
    color: #A0A7C0;
    transition: color 0.3 ease;
}

a:hover {
    color: #D0D7F0
}

li {
    color: #A0A7C0;
    margin-bottom: 10px;
}
.links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.links a {
    margin: 0 10px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.bio {
    width: 777px;  
    padding: 20px;
    box-sizing: border-box; /* Include padding in the width */
    margin: 0 auto; /* Center the bio */
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .links {
        flex-direction: column;
        align-items: center;
    }

    footer a {
        margin: 5px 0;
    }

    .bio {
        width: 100%; /* Full width on small screens */
        max-width: 90%; /* Allow some margin on the sides */
    }
}

