/* We keep style.css mainly empty or clear out conflicting styles since index.css covers the landing.
   Just overriding some global text selections to fit our #940E1B color scheme */
::selection {
    background: #940E1B;
    color: #ffffff;
}

::-moz-selection {
    background: #940E1B;
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: #2d2d2d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #940E1B;
}

.logo img {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}