.Main_cotainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.55);
    z-index: 1000;

}

.logo {
    height: 80px;
    border-radius: 60px;
    border: solid 1px wheat;
}

.img_container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.name {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 700;
    padding-left: 10px;
    font-size: 50px;
    color: aliceblue;
}

.nav_menu {
    display: flex;
    flex-direction: row;
    gap: 30px;


}

.menu {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 22px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

menu:hover {
    color: #e6501b;
}

.menu_taggle {
    display: none;
}

.humburgar {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .Main_cotainer {
        flex-wrap: wrap;
        padding: 10px 20px;
    }

    .humburgar {
        display: block;
    }

    .nav_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 10px;
    }

    .menu_taggle:checked ~ .nav_menu {
        display: flex;
    }

    .menu_taggle:checked ~ .humburgar {
        font-size: 28px;
        content: 'x';
    }

    .menu {
        font-size: 18px;

    
}
}