/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    align-items: center;
}

.logo {
    height: 350px;
}

.resume {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.resume:hover {
    background-color: #555;
}

main {
    max-width: 800px;
    padding: 20px;
    text-align: left;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.profile-info h1 {
    font-size: 24px;
    margin: 0;
}

.title {
    font-size: 18px;
    color: #aaa;
}

.contact {
    font-size: 16px;
    color: #ccc;
}

.about {
    font-size: 14px;
    margin-top: 10px;
    color: #bbb;
}

/* Experience Section */
.experience, .projects, .links {
    margin-bottom: 40px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.job, .project {
    display: flex;
    margin-bottom: 20px;
}

.job span, .project span {
    font-size: 14px;
    color: #888;
    width: 120px;
}

.job div, .project div {
    flex: 1;
}

h3 {
    font-size: 18px;
    margin: 0 0 5px;
    display: flex;
    align-items: center;
}

h3 img.arrow-icon {
    margin-left: 8px;
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

h3 img.arrow-icon:hover {
    opacity: 1;
}

p {
    font-size: 14px;
    margin: 5px 0;
}

/* Links Section */
a {
    color: #4caf50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
