#header {
    display: flex;
    padding: 20px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
}

#logo {
    font-family: 'porsche';
	font-size: 30px;
	font-weight: bold;
    text-align: center;
}

#logo div {
    background-image: linear-gradient(#ff0000, #cc0000);
	background-size: 100%;
	background-repeat: repeat;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
    display: block;
}

#menuButton {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

#menuButton div {
    width: 40px;
    height: 3px;
    margin: 5px 0;
    background-color: black;
}

nav {
    z-index: 5;
    display: none;
    width: 100%;
    flex: 1;
    background-color: white;
    justify-content: stretch;
    align-items: center;
    flex-direction: column;
}

nav a {
    flex-grow: 1;
    font-size: 20px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
}

nav div {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
}

nav img {
    width: 32px;
    height: 32px;
    margin: 20px;
    cursor: pointer;
}