* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #5b5b5b;
    overflow-x: hidden;
}

.header {
    height: 50px;
}

.logo {
    max-width: 30px;
}

@media (min-width: 768px) {
    .header {
        height: 60px;
    }
    .logo {
        max-width: 40px;
    }
}

@media (min-width: 576px) {
    .logo-menu {
        display: none;
    }
}

.sectiondark {
    background-color: #cdcccc;
}

.sectionlight {
    background-color: #e1e1e0;
}

.textcenter {
    text-align: center;
}

.nav-item {
    background-color: rgba(0, 0, 0, 0.5)
}

.nav-item:active {
    background-color: rgba(0, 0, 0, 0.7)
}

.hudelogo {
    height: 30px;
    border-radius: 3px;
    margin-bottom: 3px;
}