body{
    font: 15px/1.5 arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
    background-color: #f4f4f4;
    }
    /* Global, which means code is affecting many files eg services, home and about */
    .container{
        width: 80%;
        margin: auto;
        overflow: hidden;
    
    }
    ul{
        margin: 0;
        padding: 0;
    }
    .button_1{
        height: 38px;
        background: #e849e8;
        border: 0;
        padding-left: 20px;
        padding-right: 20px;
        color: #ffffff;
    }
    .dark{
        padding: 15px;
        background: #35424a;
        color: #ffffff;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /*Header*/
    header{
        background: skyblue;
        color: #ffffff;
        padding-top: 10px;
        min-height: 70px;
        border-bottom: yellow solid;
        border-bottom-width: 10px;
    }
    header a{
        color: #ffffff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px;
    }
    header li{
        float: left;
        display: inline;
        padding: 20px;
    
    }
    header #branding{
    float: left;
    }
    header #branding h1{
        margin: 0;
        
    }
    img{
        width: 120px;
        height: 80px;
        float: left;
        padding: 0%;
        align-items: flex-end;
        
    }      
    header nav{
        float: right;
        margin-top: 10px;
    }
    header .highlight, header .current a{
    color: #f33ff3;
    font-weight: bold;
    }
    header a:hover{
        color: rgb(241, 42, 132);
        font-weight: bold;
    }
    .newsletteralign{
        width: 80%;
        margin: auto;
        overflow: hidden;
    }
    /*Showcase */
    #showcase{
        min-height: 400px;
        background: url(../IMG_ABRAH/abrahrestaurant.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        text-align: center;
        color: #ffffff;
    }
    .fontchanger{
        color: whitesmoke;
        font-size: larger;
        font-weight: bold;
    }
    /*news letter */
    #newsletter{
        padding: 15px;
        color: #ffffff;
        background: #35424a;
    }
    #newsletter h1{
    float: left;
    }
    #newsletter form{
        float: right;
        margin-top: 15px;
    }
    #newsletter input [type="email"]{
    padding: 4px;
    height: 25px;
    width: 250px;
    }
    #newsletter button[type="submit"]{
        padding: 4px;
        height: 25px;
        width: 100px;
        }
        #boxes .box{
            float: left;
            text-align: center;
            width: 30%;
            padding: 10px;
        }
    #boxes .box img{
        width: 60%;
        height: 60%;
        text-align: left;
    }
    /*Main-col*/
    article#main-col{
        float: left;
        width: 65%;
    }
    .sidebar{
        float: right;
    }
    ul#services li{
        list-style: none;
        padding: 20px;
        border: #cccccc solid 1px;
        margin-bottom: 5px;
        background: #e6e6e6;
    
    }
  .page-title{
    color: limegreen;
    background-color: antiquewhite;
    padding: 0%;
  }
  body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid #ddd;
  position: relative;
}

.marquee {
  display: flex;
  width: 100%;
  animation: scroll 10s linear infinite;
}

.marquee img {
  width: 150px;
  height: 100px;
  margin: 0 10px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Keyframes for scrolling effect */
@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

    