@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&family=Libre+Barcode+128+Text&family=Silkscreen:wght@400;700&family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
.logo {
    min-width: 50px;
    max-width: 50%; 

    margin-left: 10px;
    padding-left: 10px;
}

.dropdown_menu {
    display: none;
}

span.material-symbols-outlined {
    color: rgb(255, 255, 255);
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    cursor: pointer;
    transition: transform .3s;
    font-size: clamp(1rem, 3vh + 0.5rem, 3rem);
}

span.material-symbols-outlined:hover {
    color: rgb(3, 252, 136);
    text-align: center;
    cursor: pointer;
    transform: scale(110%);
}

.icons-text{
    font-family: 'Silkscreen', 'Rubik',sans-serif;
    font-size: clamp(0.7rem,1dvw,1rem);
    padding: 0;
    margin: 0 2px;
    text-align: center;
    font-weight: 500;
    color: whitesmoke;
}
.container {
    background-color: #051149a4;
    margin: 0;
    padding: 0;
}

.head_wrap {
    background-color: #033228;
}

nav {
    display: flex;
    margin-bottom: 2rem;
    justify-content: space-between;
    align-items: center;
    padding-right: clamp(8px, 15px, 3rem);
}

.btn {
    max-width: 10vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: .5rem;
}

li {
    margin: 0 clamp(3px, 10px, 15px);
    text-align: center;
}

a {
    text-decoration: none;
    color: #333333;
}

.proj_nav {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


@media only screen and (max-width: 1440px) {

    li {
        font-family: Rubik;
        font-size: clamp(0.7rem, 0.9rem, 1.1rem);
        margin: 0 0;
    }
    
}

@media screen and (max-width: 900px) {
    .icons-text {
        display: none;
    }

    nav > ul {
        display: none;
    }

    .dropdown_menu {
        cursor: pointer;
        display: block;
        padding: .5rem;
        border-radius: 5px;
        z-index: 1;
    }


    .menu_content {
        display: none;
        background-color: #d3ff19;
        position: absolute;
        right: 2.5%;
        border-radius: 5px;
        align-items: center;
        transform: display .5s;
    }

    .dropdown_menu:hover .menu_content{
        display: flex;
        flex-direction: column;
        justify-content: center;

        display: block;
    }

    .icon_dropdown {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0 1rem;
        background-color: #d5ff1900;
        transition: background-color .3s;
    }

    .icon_dropdown > span {
        color: rgb(0, 0, 0);
    }

    .icon_dropdown > p {
        font-family: 'Silkscreen', 'Rubik', sans-serif;
        font-size: clamp(0.7rem, 1dvw, 1rem);
        padding: 0;
        margin: 0 2px;
        text-align: right;
        font-weight: 500;
        color: rgb(0, 0, 0);
    }

    .menu_content > a{
        height: 100%;
        text-decoration: none;
        margin: .5rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-radius: 25px;
        transition: background-color .3s;
    }

    .menu_content > a:hover {
        background-image: linear-gradient(to right, #003253a4, #d3ff19, #d5ff1969 );
    }

    .icon_dropdown:hover > p {
        color: rgb(0, 56, 30);
        text-align: center;
        cursor: pointer;
        transform: scale(110%);
    }

    .icon_dropdown:hover > span {
        color: rgb(0, 56, 30);
        text-align: center;
        cursor: pointer;
        transform: scale(110%);
    }

}