@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Noto Sans", sans-serif;
    background-color: antiquewhite;
}

header {
    height: 100px;
    background: url(/burger-cover.jpg);
    background-size: cover;
    background-position: bottom;
}

.tab {
    background-color: rgb(84, 171, 84);
    width: fit-content;
    padding: 1rem ;
    text-transform: uppercase;
    border-radius: 0 30px 30px 0 ;
    position: relative;
    bottom: 35px;
    color: white;
}

.menu-container {
   
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  
    gap: 20px;
}

.menu-card {
    margin: 20px auto;
    width: 90%;
    border: 7px solid orange;
    text-align: center;
    padding: 1rem;
}

.menu-card hr {
    
    border: 3px solid orange;
    max-width: 60%;
    margin: 0 auto 1rem auto;
}

.menu-card h3 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.menu-card p {
    margin-bottom: 1rem;
}



.opening-hours img {
    width: 100%;
    
}

.all-day-menu {
    
   background-color: white;
   padding: 2rem;
   text-align: center;
}

.all-day-menu hr {
    max-width: 60%;
    margin: 0 auto 1rem auto;
    border: 2px solid black;
}

.all-day-menu h3{
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 2rem;
}

.all-day-menu h4 {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 700;
}
.all-day-menu p {
    margin-bottom: 1rem;
}

@media only screen and (max-width: 620px) {
    .menu-container {
   
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
  
    gap: 20px;
}
}

