/* Updated CSS with suggested colors */

body {
    background-color: #222222;
    color: #dddddd;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

.profile-section {
    background-color: #2c2c2c;
    padding: 40px;
    text-align: center;
    width: 50%;
    box-sizing: border-box;
}

.profile-photo {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.profile-section h1 {
    font-size: 1.8em;
    color: #00b0ff; /* Light blue */
    margin: 10px 0;
}

.profile-section h2 {
    font-size: 1.2em;
    color: #cccccc;
    margin: 10px 0;
}

.contact-button {
    background-color: #ff7043; /* Light red */
    border: none;
    padding: 10px 20px;
    margin: 20px 0;
    cursor: pointer;
    font-size: 1em;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #ff8a65; /* Darker shade of light red */
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    display: inline-block;
}

.linkedin {
    width: 163px;
    height: 40px;
}

.github {
    width: 98px;
    height: 40px;
    filter: invert(100%);
}

.about-section {
    background-color: #333333;
    padding: 40px;
    text-align: left;
    width: 50%;
    box-sizing: border-box;
}

.about-section h2 {
    font-size: 1.8em;
    color: #00b0ff; /* Light blue */
    margin: 0 0 20px;
}

.about-section p {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center; /* Center align buttons horizontally */
    margin-top: 20px; /* Add some top margin for spacing */
}


.buttons .resume-button,
.buttons .portfolio-button {
    background-color: #ff7043; /* Light red */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buttons .resume-button:hover,
.buttons .portfolio-button:hover {
    background-color: #ff8a65; /* Darker shade of light red */
}
