body {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: rgb(75, 75, 75);
}

.spacer {
    width: 5px;
}

.spacer-top {
    height: 70px;
}

.spacer-bottom {
    height: 75px;
}

.nav-bar {
    position: fixed;
    display: flex;
    background-color: rgb(0,0,0,0.75);
    height: 70px;   
    width: 100%;
    align-items: center;
    justify-content: center;
}

h1 {
    color: rgb(223, 223, 223);
    text-align: center;
    font-size: 50px;
}   

p {
    color: rgb(223, 223, 223);
    text-align: center;
    font-size: 16px
}

.section-1 {
    background-image: url('../Bachata2.jpg');
    background-size: 600px;
    background-position-x: center;
    background-repeat: no-repeat;
    background-color: rgb(92, 92, 92);
    height: 350px;
}

.footer {
    background-color: rgb(92, 92, 92);
}

.bottom-banner-ad {
    display: flex;
    background: rgb(57, 142, 163, 0.25);
    margin-bottom: 0px;
    height: 75px;
    font-size: 50px;
    position: fixed;
    width: 100%;
    bottom: 0px;
    align-items: center;
    justify-content: center;
}

.nav-bar div {
    margin-left: 10px;
    margin-right: 10px;
}

.nav-bar .logo .word1 {
    font-size: 35px;
    color: rgb(0, 217, 255);
}

.nav-bar .logo .word2 {
    font-size: 35px;
    margin-right: 0px;
    color: rgb(255, 248, 240);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.button {
    background-color: rgb(47, 79, 88);
    border-color: rgb(120, 197, 197);
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    height: 50px;
    width: 100px;
    color: aliceblue;
    box-shadow: 0px 10px 35px #00eeff1f;
}

.button:hover {
    background-color: rgb(0, 217, 255);
    border-color: rgb(113, 255, 255);
    box-shadow: 0px 2px 35px #1ff0ffe0;
}

.nav-bar .hamburger:hover {
    background-color: rgb(0, 217, 255);
    border-color: rgb(113, 255, 255);
    box-shadow: 0px 2px 35px #1ff0ffe0;
}

.nav-bar .hamburger {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(87, 87, 87);
    border-radius: 10px;
}

.nav-bar .home {
    margin-left: auto;
}

.content {
    height: 800px;
    background: rgb(0, 0, 0);
}

.hamburger-close {
    display: none;
}

.hamburger-open {
    display: flex;
    top: 70px;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 300px;
    width: 100%;
    padding: 12px;
    background-color: rgb(48, 48, 48, 0.9);
}

@media only screen and (max-width: 1000px) {
    .nav-bar .button {
        display: none;
    }

    .nav-bar .hamburger {
        margin-left: auto;
    }

    .spacer {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .nav-bar .hamburger {
        display: none;
    }
    #hamburger-menu {
        display: none;
    }
}
  