body{
    margin:0;
    font-family:SUSE ;
}
h1,h2,h3,h4,h5,h6,p {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: inherit;
}

.container{
   max-width: 1200px;
   margin:auto;
}
header{
    border-bottom:1px solid rgba(0,0,0,0.1) ;
    /* padding: 20px 0px 20px 0px; */
    padding: 20px 0;
}
header .header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    height: 30px;
}

.primary-nav a{
    text-decoration: none;
    margin-right:20px ;
    color: #000000;
    transition: 0.2s;
}
.primary-nav a:last-child{
    margin-right: 0;
}

.primary-nav a:hover{
    color:#CB202D;
}

.hero-section{
    background-image: url(../assets/home-hero-banner.jpg);
    color: white;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;

}

.hero-section h1{
    font-size: 60px;
}

.hero-section p{
    font-size: 20px;
    margin-top: 20px;
}

.hero-section .links-wrapper{
    margin-top: 30px;
}

.hero-section .links-wrapper a{
    display: inline-block;
    padding: 10px 15px;
    background-color:#CB202D;
    margin-left: 30px;
}
.hero-section .links-wrapper a:first-child{
    margin-left: 0;
}

.top-deals-section{
    padding-top:100px ;
    padding-bottom: 100px;

}

.top-deals-section h2{
    font-size: 35px;
} 

.top-deals-section .dishes-wrapper{
    margin-top: 40px;
    display: flex;
    gap: 40px;

}

.dish-wrapper{
    width: 200px;
    text-align: center;
}

.dish-wrapper img{
    width: 100%;
    border-radius: 100%;
}

.dish-wrapper p{
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}

footer{
    background-color: #433;
    color: white;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-content{
    display: flex;
    justify-content: space-between;
}

.footer-content ul{
    padding: 0;
    list-style: none;
}

.footer-content ul li:first-child{
    margin-bottom:20px ;
}

.footer-content .logo{
    height: 30px;
}