body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    overflow-y: hidden;
    overflow-x: hidden;
}

.acrylic-header {
    backdrop-filter: blur(10px);
    background: #111111;
    border: 0.2px solid #333333;
    border-radius: 100px; 
    position: relative; 
    left: 10px;
    top: 10px; 
    width: 100%; 
    max-width: 1860px; 
    height: 57px;
    z-index: 1000; 
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

h1.outfit-header {
    font-weight: 800;
    position: relative;
    bottom: 30px;
    right: 20px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    bottom: 30px;
}


.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::before {
    width: 100%;
}

.introduce-text {
    text-align: center;
    margin-top: 180px;
    font-size: 23px;
    color: #FFF;
}

.Business {
    color: #FFFF00;
    text-align: center;
    font-size: 50px;
    position: relative;
    top: 150px;
}


.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px; /* Adjust width if needed */
    height: 30px; /* Adjust height if needed */
    position: relative;
    display: none;
    margin-left: 10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px; /* Adjust height if needed */
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 69px;
    left: -250px;
    width: 100%;
    height: 92%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    display: none;
    z-index: 1000;
}

.mobile-menu.show {
    transform: translateX(0); /* Adjust this value based on your menu width */
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
}

.button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.Authorize {
    text-decoration: none;
    color: #000000;
    background-color: #FFF;
    height: 30px;
    width: 140px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    border-radius: 50px;
    transition: transform 0.3s ease;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.Authorize:hover {
    transform: scale(1.05);
}

.Authorize-img {
    height: 20px;
    width: 20px;
    margin-right: 3px;
}

.Adding {
    text-decoration: none;
    color: #000000;
    background-color: #FFF;
    height: 30px;
    width: 100px;
    text-align: center;
    line-height: 30px;
    display: inline-block;
    border-radius: 50px;
    transition: transform 0.3s ease;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.Adding:hover {
    transform: scale(1.05);
}

.adding-img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.footer {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    position: relative; 
    bottom: 0;
    width: 100%;
    margin-top: 20%;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-bottom: 55px;
    }

    .mobile-menu.show {
        left: 0;
        display: block;
    }

    .acrylic-header {
        max-width: 740px;
    }
}

main {
    padding: 7rem 2rem;
}

@media (max-width: 425px)  {
    
.acrylic-header {
    max-width: 400px;
}

}

@media (max-width: 375px)  {
    .acrylic-header {
        max-width: 350px;
    }
}

@media (max-width: 325px)  {
    
    .acrylic-header {
        max-width: 300px;
    }
}