

.test {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 90%;
}

h1 {
    color: white;
    margin-left: 20px;
}

.js-nav {
    display: flex;
    padding: 25px;
}

.title2 {
    color: #d921e5;
    font-size: 28px;
    font-weight: bold;
    margin-left: 20px;
}

.nav-items-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.nav-items-container li {
    display: inline-block;
}

.nav-items-container a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    background-color: #222;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
    display: block;
}

.nav-items-container a:hover {
    background-color: #444;
}

.burger-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.burger-button div {
    width: 30px;
    height: 4px;
    background-color: white;
    margin: 5px 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    background-color: #111;
    text-align: center;
    padding: 10px 0;
}

.burger-menu a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.burger-menu a:hover {
    background-color: #222;
}

@media screen and (max-width: 768px) {
    .nav-items-container {
        display: none;
    }
    .burger-button {
        display: flex;
    }
    .test {
        display: none;
    }
}

#sect {
    margin: 0 auto;
}