body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

header .profile-links-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin-top: 1rem;
}

header .profile-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

header .profile-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0.5rem;
    border-radius: 5px;
}

header .profile-links a .profile-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background: transparent;
}

main {
    flex: 1;
    padding: 1rem;
    max-width: 800px; /* Set a max-width for the main content */
    width: 100%;
}

h1, h2, h3 {
    margin: 0.5rem 0;
}

.project {
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project a {
    color: #333;
    text-decoration: none;
    margin-right: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.project .link-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background: transparent;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}

footer .contact-box {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin-top: 1rem;
    color: #333;
}