
header {
    position: sticky; /* Keeps the header stuck at the top */
    top: 0; /* Position the header at the very top */
    z-index: 1000; /* Ensures the header is above other elements */
    background: white; /* Add a background color to prevent transparency */
    color: black;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Parkinsans", sans-serif;
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(231, 152, 27, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 15px;
    gap: 15px; /* Space between logo and name */
}

.logo {
    height: 40px; /* Adjust as needed for the logo size */
}

.name-link {
    color: black;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    font-size: 30px;
    display: flex;
    justify-content: space-evenly;
    gap: 60px; /* Adjust spacing between navigation links */
    padding: 0.3em 0.5em;
}

.nav-links a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: #555;
}

header h1:hover {
    color: #555;
}
body{
    background-color: black;
    color: white;
}


.text{
    height:30vh;
    h1{
        font-size:50px;
        padding-left: 50px;
        font-style: bold;
        font-family: "Parkinsans", sans-serif;
    }
    p{
        font-size: 20px;
        padding-left: 50px;
        font-family: "Parkinsans", sans-serif;
    }
    .description{
        font-size: 15px;
        padding-left: 50px;
        font-family: "Parkinsans", sans-serif;
       
    }
    
    .designed,
    .basic {
        font-size: 30px;
        font-weight: 700; /* Corrected from font-style to font-weight */
    }
    
}

.resume{
    display: flex;           /* Use flexbox for centering */
    justify-content: center; /* Center the iframe horizontally */
    align-items: center;     /* Center the iframe vertically (if there's enough height) */
    padding: 5%;             /* Reduce padding for better spacing */
    width: 100%;             /* Ensure the container takes the full width */
    height: 100vh;           /* Full viewport height */
    box-sizing: border-box;
}
.resume iframe {
    width: 80%;              /* Increase the width of the iframe */
    height: 90vh;            /* Increase the height of the iframe */
    border: none;            /* Optional: Remove the border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow for a polished look */
}