html {
  scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #fff;
    background-color: black;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    padding: 0%;
    margin: 0%;
    width: 120px;
    border-radius: 50%;
    border: 1px rgb(229, 255, 0) solid;
    box-shadow: 1px 0px 4px 2px yellow ;
}

/* NAVBAR */

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 0px 2px 1px yellow;
}

.navbar ul li a {
    text-decoration: none;
    color: rgb(250, 245, 245);
    font-weight: 600;
    transition: 0.3s;
}
.navbar ul li a:hover {
    color: orange;
}
/* ORDER BUTTON */
.order-btn img {
    width: 60px;
    cursor: pointer;
}
.menu-icon{
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}
/* CLOSE BUTTON */
.close-btn{
    display: none;
    position:absolute;
    top:20px;
    right:20px;
    font-size:20px;
    color:rgb(247, 8, 8);
    cursor:pointer;
}

/* MOBILE VIEW */
@media (max-width:768px){
.close-btn{
    display: block;
}
.navbar{
    position: fixed;
    top:0;
    right:-260px;
    width:200px;
    height:fit-content;
    background:black;
    transition:0.4s;
    padding-top:80px;
}

.navbar ul{
    flex-direction: column;
    gap: 25px;
    box-shadow: none;
    
}

.navbar ul li{
    border-radius: 50px;
    text-align:center;
    box-shadow: 0px 1px 0px red;
}
.navbar ul li:hover{
     transform: translateY(-8px);
    box-shadow: 0px 8px 10px white;
    background-color: rgb(134, 98, 108);
}
.menu-icon{
    display:block;
}

.order-btn{
    display:none;
}

.navbar.active{
    right:0;
}
}
.quotes{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.quotes-text{
    margin-top: 20px;
    padding-left: 100px;
    color: rgb(235, 243, 15);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    text-shadow: 1px 0px 0px black;
}
#quote1{
    font-size: 30px;
    padding-left: 40px;
    color: rgb(223, 209, 24);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#quotes2{
       padding-left: 40px;
    font-size: 30px;
    color: rgb(235, 16, 122);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
.plate-image img{
    width: 400px;
    margin-right: 100px;
}
.quotes-text pre{
    font-size: 15px;
    color: rgb(245, 10, 10);
    font-weight: bold;
}
.btn_gonow{
    font-size: 20px;
    border-radius: 25px;
    background-color: rgb(245, 245, 22);
     text-decoration: none;
    width: 120px;
    height: 50px;
    position: absolute;
    left:200px;
    color: rgb(242, 12, 43);
}
.btn_gonow:hover{
    background-color: rgb(249, 101, 10);
    color: rgb(255, 255, 255);
    transition-duration: 2s;
    a{
        color: white;
    }
}
.btn_gonow a{
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}
.center_item{
    width: fit-content;
    margin: 0 auto;   /* centers horizontally */
    text-align: center;
    box-shadow: 1px 1px 1px yellow;
    color: red;
}
.center_item pre{
color: rgb(26, 230, 23);
}

@media (max-width:768px){

.items{
    flex-direction: column;
    align-items: center;
                    max-height: 300px; 
    -ms-overflow-style: none; 
    scrollbar-width: none;   

    overflow-y: scroll;
}

.search{
    width: 90%;
    margin-left: 20px;
}

.plate-image img{
    margin-top: 60px;
margin-left: 100px;
    width: 300px;
}

}