body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1b2235;
}

a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.main-container {
    display: flex;
    align-items: center;
    padding: 12px;
    max-width: 800px;
    width: 100%;
}

.container {
    text-align: left;
    padding: 20px;
    color: white;
    width: 100%;
}

.me {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 36px
}

.profile {
    display: flex;
    justify-content: center;
    width: 100%;
}

.profile img {
    width: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease;
}

.details {
    flex-grow: 1;
    text-align: left;
    width: 100%;
}

.me h1 {
    margin-bottom: 10px;
    margin-left: 0;
}

.me p {
    margin-top: 0;
    margin-left: 0;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    margin-bottom: 0px;
}

.section p {
    margin-top: 6px;
}

.clients {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 24px;
}

.clients img {
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0rem 0.35rem 0.4rem rgba(0, 0, 0, 0.4));
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 24px;
}

.projects img {
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0rem 0.35rem 0.4rem rgba(0, 0, 0, 0.4));
}

.more {
    align-items: flex-start;
}

.more ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin: 12px 0;
}

h1 {
    margin: 0 0 10px;
}

p {
    margin: 0;
}

@media (max-width: 600px) {
    .profile img {
        width: 60%;
    }

    .me {
        align-items: center;
    }

    .details {
        text-align: center;
    }
}