html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
    background-color:beige;
}

#logo {
    width: 72%;
    padding-top: 10px;
    padding-bottom: 20px; 
    padding-left: 15%;
}

nav {
    background-color:rgb(135, 21, 54);
    width: 100%;
    display: flex;
    justify-content: space-around;
}

a {
    color:beige;
    text-decoration: none;
    font-size: 40px;
    padding: 20px;
}

img {
    width: 100%;
}
#h1 {
    width: 12%;
    padding-top: 30px;
    padding-left: 45%;
    padding-bottom: 5px;
}



#h2 {
    width: 40%;
    padding-top: 50px;
    padding-bottom: 2px;
    padding-left: 28%;
}


#cheesesteaks{
  background-color: rgb(135, 21, 54);
  width: 100%;
    padding: 20px;
    box-sizing: border-box;
    outline: 4px solid rgb(113, 167, 203);
}


#burgers{
  background-color: rgb(113, 167, 203);
  width: 100%;
    padding: 20px;
    box-sizing: border-box;
    outline: 4px solid rgb(113, 167, 203);
}

#sides{
  background-color: rgb(135, 21, 54);
  width: 100%;
    padding: 20px;
    box-sizing: border-box;
    outline: 4px solid rgb(113, 167, 203);
}

#drinks{
  background-color: rgb(113, 167, 203);
  width: 100%;
    padding: 20px;
    box-sizing: border-box;
    outline: 4px solid rgb(113, 167, 203);
}

ul {
    display: flex;
    justify-content: space-between;
}

#h3 {
    padding-top: 50px;
    padding-bottom: 2px;
    padding-left: 12%;
    width: 72%;
}

#h4 {
    width: 20%;
    padding-top: 50px;
    padding-bottom: 2px;
    padding-left: 40%;
}

#history {
    background-color: rgb(135, 21, 54);
    padding-bottom: 50px;
}

p {
    font-size: 18px;
    width: 50%;
    padding-left: 25%;
    padding-top: 50px;
    color:beige;
}

#footer {
  background-color: rgb(135, 21, 54);
  
    padding: 20px;
    box-sizing: border-box;
    outline: 4px solid rgb(113, 167, 203);
}

#big{
  background-color: rgb(135, 21, 54);
    padding: 20px;
  
}














.navbar {
    display: none;
  }
  
  
  /* existing nav bar code from https://codepen.io/alvarotrigo/pen/wvrzPWL */
  
  .navbar {
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  
  .navbar .menu-items {
    display: flex;
  }
  
  .navbar .nav-container li {
    list-style: none;
  }
  
  .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }
  
  .navbar .nav-container a:hover{
      font-weight: bolder;
  }
  
  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
  }
  
  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.2rem;
    color: #0e2431;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .logo{
    display: none;
  }
  
  
  /* YOU NEED TO COPY THIS PART INTO YOUR MEDIA QUERY - it hides the desktop nav and hides the mobile nav */
  #big {
    font-size: 50px;
  }
  
  @media screen and (max-width: 600px) {
    nav {
      display:none;
    }
    .navbar {
      display: block;
    }

    #footer ul {
      flex-wrap:wrap;
    }

    #cheesesteaks ul {
      flex-wrap:wrap;
    }

    #burgers ul {
      flex-wrap:wrap;
    }

    #sides ul {
      flex-wrap:wrap;
    }

    #drinks ul {
      flex-wrap:wrap;
    }
  }