.top-text {
    color: #FF6A00;
    font-size: 50px;

}

.banner {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
header {
    background-color: #1e1e1e;
}
li {
    list-style: none;
}
a {
    color: white;
    text-decoration: none;
}
.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.navMenu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.nav-branding {
    font-size: 2rem;
}

.navLink {
    transition: 0.7s ease;
}
.navLink:hover{
    color: orange;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}
@media (max-width:768px){
    .hamburger{
        display: block;
        
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .navMenu{
        position: fixed;
        left: -100%;
        top:70px;
        gap: 0;
        flex-direction: column;
        background-color: #1e1e1e;
        width: 50%;
        text-align: center;
        transition: 0.3s;
    }
    .navItem {
        margin: 16px 0;
    }
    .navMenu.active{
        left: 0;
        width: auto;
        padding-left: 50px;
        padding-right: 50px;

    }

}



