@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Source+Sans+3&display=swap');

#myShop {
    font-family: 'Arial', sans-serif;
    position: relative;
    top: 40px;
}

#myShop h1, #myShop h2, #myShop h3, .sprd-header__title {
    font-family: 'Permanent Marker', cursive;
}

body {
    margin: 0;
    padding: 0;
}

* {
    outline: none;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

#nav-container {
    background-color: black;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000 !important;
}

.header-navigation {
    height: 40px;
    position: relative;
    text-align: right;
    font-family: 'Permanent Marker', cursive;
}

.header-navigation-item-img {

}

.header-navigation-item {
    color: white;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 5px 1.5rem;
    height: 40px;
}

.header-navigation-item img {
    max-height: 30px;
    position: relative;
    margin-top: -10px;
    top: 10px;
}

.header-navigation-item span {
    display: block;
    position: relative;
    line-height: 30px;
}

.header-navigation-item:hover {
    cursor: pointer;
    background: #222;
}

.header-navigation-submenu {
    display: none;
    position: absolute;
    background: white;
    width: 220px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
    right: 0;
    margin-top: 5px;
}

.header-navigation-item:hover .header-navigation-submenu {
    display: block;
}

.header-navigation-sub-item {
    padding: 10px 10px 10px 25px;
    display: block;
    text-align: left;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
}

.header-navigation-sub-item:hover {
    cursor: pointer;
    color: black;
    background-color: #eee;
}