

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: black;
    color: white;
    font-family: "Parkinsans", sans-serif;   
    
}

.projects{
    h1{
        font-size:50px;
        padding-left: 50px;
    }
    p{
        font-size: 20px;
        height: 20vh;
        padding-left: 50px;
        font-style: normal;
        font-family: "Parkinsans", sans-serif;
    }
}

/* projects */
.portfolio {
    height: 130vh;
    font-family: "Parkinsans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    /* White text */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px;
    text-align: center;


    .portfolio-item {
        background-color: #000000;
        /* Slightly lighter black */
        border-radius: 20px;
        padding: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    }

    .portfolio-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    .portfolio-item h3 {
        margin: 15px 0;
        font-size: 1.5rem;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }

    .portfolio-item:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

}