body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
}

.nav-left a, .nav-right a {
    color: white;
    text-decoration: none;
    transition: transform 0.2s, font-size 0.2s;
}

.nav-right a {
    margin-left: 1.5rem;
}

.nav-left a:hover, .nav-right a:hover {
    transform: scale(1.1);
    font-size: 1.6rem;
}

main {
    background-color: #d0d0d0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 3rem;
}

/* New styles for the resume page */
.resume-container {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px); /* Adjust based on your header and footer height */
}

.resume-pdf {
    width: 100%;
    height: 100%;
    border: none;
}

/* Existing styles */
.profile-picture img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 3rem;
}

.profile-info {
    background-color: #e0e0e0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-info h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.profile-info p {
    font-weight: 300;
    font-size: 1.2rem;
}

footer {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.social-icon {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon i {
    vertical-align: middle;
}