.fonts-loaded{
    background-color: orange;
}
body{
    background-color:white;
}
header{
    background-color: orange;
    width: 100%;
    height: 150px;
}
h1{
    text-align: center;
    color: black;
}
#outerbox{
    width: 1510px; 
    height: 705px;
    overflow: hidden;
}
#sliderbox{
    position: relative;
    width: 3020px;
    animation-name: slide;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
#sliderbox img{
    float: left;
    width: 1510px;
}
@keyframes slide{
    0%{
    left: 0px;
    }
    40%{
    left: 0px;    
    }
    50%{
    left: -1510px;    
    }
    90%{
    left: -1510px;    
    }
}   
.food_items{
    border: 0px solid black;
 
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.food_items_pro{
    border: 2px solid black;
    height: 250px;
    width: 200px;
    
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 5px 5px black;
    transition: transform 1s;
}
.food_items_pro:hover{
    transform: scale(1.1);
}
.food_items_pro img{
    width: 100%;
    height: 70%;
}
.title p{
    text-align: center;
}
.btn{
    border: 0px solid green;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn input{
    text-align: center;
    border-radius: 7px;
    border: 0px;
    background-color: green;
    font-size: 15px;
}
.btn input:hover{
    background-color: white;
}
#footer{
    width: 101%;
    height: 200px;
    align-items: center;
    display: flex;
    background-color: silver;
    justify-content: space-around;
}
#footerbox{
    width: 300px;
    height: 180px;
    color: black;
    float: left;
    text-align: center;
    
}
#footerbox a{
    color: blue;
}

