/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .header-content h1 {
    font-size: 1.8rem;
    color: #333;
}

header .header-content p {
    font-size: 1rem;
    color: #666;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
}

header nav a:hover {
    color: #007BFF;
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
    max-width: 800px;
    text-align: left;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 40px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.intro p:first-of-type {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
}

.intro p:last-of-type {
    font-size: 1rem;
    color: #555;
}

/* Buttons Section */
.buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.button {
    display: inline-block;
    text-align: center;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button.resume {
    background-color: #f4b400;
}

.button.projects {
    background-color: #db4437;
}

.button.contact {
    background-color: #0f9d58;
}

.button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}