.navbar {
    overflow-x: hidden;
    padding-block: 1rem;
    box-sizing: border-box;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    position: relative;
    min-height: clamp(3rem, 10vh, 5rem);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    z-index: 1000;
    background-color: #171717;
}

.uniname {
    flex-shrink: 0;
    padding-right: max(2rem,6%);
    margin-left: min(1rem, 2%);
    height: 100%;
}


.uniname h1 {
    font-size: clamp(1rem,2vw,4rem);
    justify-content: baseline;
    white-space: nowrap;
    margin: 0px;
    color: #D4D4D4;
}

.navbar nav {
    
    gap: clamp(1rem, 4vw, 8rem);
    flex-direction: row;
    flex-shrink: 0;
    display: flex;
    
    justify-content:flex-start;
    align-items: center;
    flex-direction: row;
    width: 100%;
}


@media screen and (max-width:768px){
    .navbar {
        flex-direction: column;
        
    }

    .uniname {
        margin: 0px;
        padding: 0px;
    }

    #headerbreak {
        display: none;
    }

    .navbar nav {
        gap: 0.5rem;
        justify-content: center;
    }

    .navbar a {
        margin: 0px;
        font-size: 2px;
    }

    

    #pfpcontainer {
        display: none;
    }

    #name {
        display: none;
    }
}


.navbar a {
    flex-shrink: 0;
    font-size: clamp(8px, 2vw, 2.5rem);
    text-decoration: none;
    color: #E5E5E5;
}

/* .navbar a:first-of-type{
    margin-left: clamp(0.5rem, 8vw, 10rem);
} */

#pfpcontainer {
    margin-left: clamp(2rem, 7vw, 10rem);
    margin-right: 0px;
    width: clamp(4rem, 6vw, 8vw);
    height: clamp(4rem, 5vw, 8vw);
    border-radius: 50%;
    overflow: hidden;
}

#pfp {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#name {
    font-size: clamp(1rem, 2vw, 2.5rem);
    text-decoration: none;
    color: #E5E5E5;
    white-space: nowrap;
    overflow: hidden;
    
}