body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, sans-serif;
    position: relative;
}

.overlay {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1;
    padding: 10px 0;
}

.burger-menu {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    left: 40px;
    top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0;
}

nav ul li {
    position: relative;
    margin: 0 0px;
    font-size: 22px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0px 50px;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 35px;
    padding: 0px 0;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    display: block;
}

nav ul li ul li a {
    padding: 10px 15px;
    font-size: 18px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

nav ul li ul li a:hover {
    font-weight: bold;
}

.logo img {
    width: 75px;
    height: 59px;
    margin: 0 30px;
}

.background-class {
    background-image: url('https://ve-sound.com/images/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.center-content {
    text-align: center;
    color: white;
}

.center-content h1 {
    font-size: 36px;
    margin: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.center-content h2 {
    font-size: 22px;
    margin: 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    color: black;
    background-color: white;
    text-decoration: none !important;
    font-size: 22px;
    font-weight: bold;
    border-radius: 32px;
    filter: drop-shadow(0 0 10px black);
    transition: all 0.7s ease;
}

.button:hover {
    color: white;
    background-color: black;
    box-shadow: none;
    filter: drop-shadow(0 0 10px white);
}

@media (max-width: 1024px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        justify-content: center;
        display: none;
    	margin-top: 90px;
    }

    .nav-links.nav-active {
  display: flex;
  align-items: center;
 justify-content: center;
background-image: url('https://www.ve-sound.com/images/layer_burger_v3.png');
background-size: contain;
padding-left: 0px;
padding-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;

    width: 100%;
    }


    .nav-links li ul {
        display: block;
        position: static;
        justify-content: center;
 

    }

    .boldonlyonsections {
font-weight: bold;
    }

    .logo {
        display: none;
    }

    .logo-centered {
        display: block;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links li {
        margin: 0;
  line-height: 34px;
    }
}

@media (min-width: 1025px) {
    .logo-centered {
        display: none;
    }
}



footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
    background: transparent;
    font-size: 22px;
}
