/***** Shared navigation and header *****/

.nav-background {
    position: fixed;
    width: 100%;
    height: 160px;
    background-color: #000000d3;
    z-index: 50;
    border-bottom: #d2823d86 solid 2px;
}

.mobile-nav-icon {
    float: right;
    margin-top: 35px;
    margin-right: 15px;
    display: none;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.702), rgba(23, 23, 23, 0.768)), url(../images/pizza.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#logo img {
    width: 500px;
    position: absolute;
    top: 180px;
    left: 15%;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    position: static;
    margin: 0;
    margin-top: 10px;
    margin-right: 20px;
    white-space: nowrap;
}

nav ul {
    position: fixed;
    margin-left: 25%;
    margin-top: 50px;
    z-index: 100;
}

nav ul li {
    display: inline-block;
    margin-left: 30px;
}

nav ul li a:link, nav ul li a:visited {
    color: #ffffff;
    text-decoration: none;
    font-size: 30px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    border-bottom: 2px solid #cc5611bc;
    color: #de9149;
}

nav ul li a:active {
    color: #763b008c;
}

.header-text {
    position: absolute;
    top: 850px;
    left: 15%;
}

.header-text h1 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    word-spacing: 3.5px;
}