/* =====================================
   Aachi's Foods & Spices - Version 2.0
===================================== */

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
}

/* Navigation Bar */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1B5E20;
    padding:15px 40px;
}

/* Logo */
.logo img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
}

/* Navigation Menu */
.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:25px;
}

.nav-links a{
    text-decoration:none;
    color:#ffffff;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

.nav-links a:hover{
    color:#FFD700;
} 
body{
    background-color: #acdd9f;
}

/* ===========================
   Hero Section
=========================== */

.hero{
    height:550px;
    background-image:url("images/banner.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    background:rgba(0,0,0,0.45);
    padding:40px;
    border-radius:10px;
    text-align:center;
    color:white;
}

.hero-content h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#FFD700;
    color:#222;
    text-decoration:none;
    font-weight:bold;
    border-radius:8px;
    transition:0.3s;
}

.hero-btn:hover{
    background:white;
}


/* ===== About Section ===== */

.about{
    background:#ffffff;
    padding:80px 50px;
    text-align:center;
}

.about h2{
    font-size:36px;
    color:#1B5E20;
    margin-bottom:25px;
}

.about p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}
/* ===== Featured Products ===== */

.products{
    padding:80px 50px;
    background:#f8f8f8;
    text-align:center;
}

.products h2{
    color:#1B5E20;
    font-size:36px;
    margin-bottom:50px;
}
.product-container{
    display:grid !important;
    grid-template-columns:280px 280px 280px !important;
    gap:30px !important;
    justify-content:center !important;
    background :#f8fe8;
}

.product-card{
    width:280px;
    min-height:480px;
    background:white;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    overflow:hidden;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-10px);
     box-shadow:0 12px 25px rgba(0,0,0,0.25);
}


.product-card img{
    width:100%;
    height:300px;
    object-fit:contain;
    background:rgb(224, 161, 161);
}

.product-card h3{
    margin:20px 0 10px;
    color:#1B5E20;
}

.product-card p{
    padding:0 20px 20px;
    color:#555;
}
.product-card{
    cursor:pointer;
}
.view-products{
    margin-top:50px;
}

/* ==========================
   Why Choose Us
========================== */

.why-us{
    background:#f0e9e9;
    padding:80px 50px;
    text-align:center;
}

.why-us h2{
    font-size:36px;
    color:#1B5E20;
    margin-bottom:50px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,2fr);
    gap:30px;
}

.why-card{
    background:#f8f8f8;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,0.10);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card h3{
    color:#1B5E20;
    margin-bottom:20px;
}

.why-card p{
    color:#555;
    line-height:1.8;
}

/* ==========================
   Footer
========================== */

.footer{
    background:#1B5E20;
    color:white;
    padding:60px 50px 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
    color:#FFD700;
}

.footer-box p{
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#FFD700;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.25);
    margin-top:40px;
    padding-top:20px;
    font-size:15px;
}

/* Social Media Icons */

.social-icons{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-top:30px;
    margin-bottom:30px;
}


.social-icons a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:45px;
    height:45px;
    background:#FFD700;
    color:#1B5E20;
    border-radius:50%;
    text-decoration:none;
    font-size:20px;
    transition:0.3s;
}
.social-icons a:hover{
    background:white;
    transform:scale(1.15);
}

/* ==========================================
   Responsive Design
========================================== */

@media (max-width:992px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .product-container{
        grid-template-columns:repeat(2,280px);
    }

    .why-container{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media (max-width:768px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:18px;
    }

    .product-container{
        grid-template-columns:1fr;
        justify-items:center;
    }

    .why-container{
        grid-template-columns:1fr;
    }

    .footer{
        padding:50px 20px;
    }

}

@media (max-width:480px){

    .logo img{
        width:60px;
        height:60px;
    }

    .hero{
        height:420px;
    }

    .hero-content{
        padding:25px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-btn{
        padding:12px 24px;
    }

}

/* ==========================
   WhatsApp Floating Button
========================== */

.whatsapp-float{

    position:fixed;

    bottom:25px;

    right:25px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.30);

    transition:.3s;

    z-index:999;

}

.whatsapp-float:hover{

    transform:scale(1.15);

    background:#1EBE5D;

}

html{
    scroll-behavior:smooth;
}

/* ==========================
   Scroll To Top Button
========================== */

#topBtn{

    position:fixed;

    bottom:100px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#FFD700;

    color:#1B5E20;

    font-size:24px;

    cursor:pointer;

    display:none;

    box-shadow:0 5px 15px rgba(0,0,0,.30);

    transition:.3s;

    z-index:999;

}

#topBtn:hover{

    transform:scale(1.1);

    background:white;

}

/* ==========================
   Page Banner
========================== */

.page-banner{

    height:300px;

    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("images/banner.png");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}

.page-banner-content{

    text-align:center;

    color:white;

}

.page-banner-content h1{

    font-size:50px;

    margin-bottom:15px;

}

.page-banner-content p{

    font-size:22px;

}

/* Company Story */

.about-company{
    padding:80px 10%;
    background:#ffffff;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:38px;
    color:#1B5E20;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:450px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* ==========================
   Mission & Vision
========================== */

.mission-section{

    padding:80px 10%;

    background:#F8F9E8;

}

.section-title{

    text-align:center;

    font-size:40px;

    color:#1B5E20;

    margin-bottom:50px;

}

.mission-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.mission-card{

    background:white;

    padding:35px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

   

}

.mission-card:hover{

    transform:translateY(-10px);

}
.mission-card i{

    font-size:50px;

    color:#FFD700;

    margin-bottom:20px;

}

.mission-card h3{

    color:#1B5E20;

    margin-bottom:15px;

}

.mission-card p{

    line-height:1.8;

    color:#555;

}

.why-about{
    padding:80px 10%;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr));
    @media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}
}

.why-card{
    background:#F8F9E8;
    padding:30px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:45px;
    color:#FFD700;
    margin-bottom:20px;
}

.why-card h3{
    color:#1B5E20;
    margin-bottom:15px;
}

.why-card p{
    color:#555;
    line-height:1.7;
}
/* ==========================
   Quality Assurance
========================== */

.quality-section{
    padding:80px 10%;
    background:#F8F9E8;
}

.quality-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.quality-image{
    flex:1;
    text-align:center;
}

.quality-image img{
    width:100%;
    max-width:450px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.quality-content{
    flex:1;
}

.quality-content h2{
    font-size:40px;
    color:#1B5E20;
    margin-bottom:20px;
}

.quality-content p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.quality-content ul{
    list-style:none;
    padding:0;
}

.quality-content li{
    font-size:18px;
    margin-bottom:15px;
    color:#1B5E20;
    font-weight:600;
}
/*==================================
    Quality Assurance
==================================*/

.quality{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding:80px 10%;

    background:white;

    flex-wrap:wrap;

}

.quality-content{

    flex:1;

}

.quality-content h2{

    color:#1B5E20;

    font-size:38px;

    margin-bottom:20px;

}

.quality-content p{

    line-height:1.8;

    margin-bottom:20px;

    color:#555;

}

.quality-content ul{

    padding-left:20px;

}

.quality-content li{

    margin-bottom:12px;

    color:#333;

}

.quality-image{

    flex:1;

    text-align:center;

}

.quality-image img{

    width:100%;

    max-width:450px;

    border-radius:15px;

}
/*==================================
      Our Process
==================================*/

.process{

    padding:80px 10%;

    background:#F8F9E8;

}

.process-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:40px;

}

.process-step{

    background:white;

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.process-step:hover{

    transform:translateY(-8px);

}

.step-number{

    width:60px;

    height:60px;

    background:#1B5E20;

    color:white;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:bold;

}

.process-step h3{

    color:#1B5E20;

    margin-bottom:15px;

}

.process-step p{

    color:#555;

    line-height:1.7;

}
/*==================================
     Company Statistics
==================================*/

.stats{

    padding:80px 10%;

    background:white;

}

.stats-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:40px;

}

.stat-box{

    background:#1B5E20;

    color:white;

    text-align:center;

    padding:40px 20px;

    border-radius:15px;

    transition:.3s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h3{

    font-size:42px;

    color:#FFD700;

    margin-bottom:15px;

}

.stat-box p{

    font-size:18px;

}
<!-- ==========================
     Call To Action
========================== -->

<section class="cta">

    <h2>Ready to Experience the Taste of Quality?</h2>

    <p>
        Contact us today and discover our range of premium food products.
    </p>

    <a href="contact.html" class="cta-btn">Contact Us</a>

</section>
/*==================================
      Call To Action
==================================*/

.cta{

    background:#1B5E20;

    color:white;

    text-align:center;

    padding:80px 20px;

}


.cta h2{

    font-size:40px;

    margin-bottom:20px;

}

.cta p{

    font-size:18px;

    margin-bottom:30px;

}

.cta-btn{

    display:inline-block;

    background:#FFD700;

    color:#1B5E20;

    padding:15px 35px;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.cta-btn:hover{

    background:white;

}

/*==================================
      Products Banner
==================================*/

.products-banner{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/products-banner.jpg");

    background-size:cover;

    background-position:center;

    color:white;

    text-align:center;

    padding:120px 20px;

}

.banner-content h1{

    font-size:48px;

    margin-bottom:20px;

}

.banner-content p{

    font-size:20px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/*==================================
      Product Categories
==================================*/

.product-categories{

    padding:60px 20px;

    text-align:center;

}

.product-categories h2{

    font-size:36px;

    color:#1B5E20;

    margin-bottom:30px;

}

.category-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}

.category-buttons button{

    padding:12px 25px;

    border:none;

    border-radius:30px;

    background:#FFD700;

    color:#1B5E20;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

.category-buttons button:hover{

    background:#1B5E20;

    color:white;

}

/*==================================
        Product Cards
==================================*/

.products{

    padding: 80px 20px;
    

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap: 10px;

}

.product-card{

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    text-align:center;

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height: 230px;

    object-fit:cover;

}

.product-card h3{

    margin:20px 0 10px;

    color:#1B5E20;

}

.product-card p{

    padding:0 20px;

    line-height:1.6;

}

.product-btn{

    display:inline-block;

    margin:20px;

    padding:12px 25px;

    background:#FFD700;

    color:#1B5E20;

    text-decoration:none;

    border-radius:30px;

    font-weight:bold;

}

.product-btn:hover{

    background:#1B5E20;

    color:white;

}

/*==================================
     Product Features
==================================*/

.product-features{

    padding:70px 20px;

    background:#f8f8f8;

    text-align:center;

}

.product-features h2{

    font-size:36px;

    color:#1B5E20;

    margin-bottom:40px;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.feature-card{

    background:#ffffff;

    padding:30px 20px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.1);

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card h3{

    color:#1B5E20;

    margin: 20px 0 15px;

}

.feature-card p{

    line-height:1.0;

    color:#555;

}

/*==================================
      Products CTA
==================================*/

.products-cta{

    background:#1B5E20;

    color:white;

    text-align:center;

    padding:80px 20px;

}

.products-cta h2{

    font-size:40px;

    margin-bottom:30px;

}

.products-cta p{

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.cta-btn{

    display:inline-block;

    margin-top:30px;

    background:#FFD700;

    color:#1B5E20;

    padding:15px 35px;

    text-decoration:none;

    font-weight:bold;

    border-radius:30px;

    transition:.3s;

}

.cta-btn:hover{

    background:white;

    color:#1B5E20;

}
/*==================================
      Gallery Banner
==================================*/

.gallery-banner{

    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("images/gallery-banner.jpg");

    background-size:cover;

    background-position:center;

    height:350px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.gallery-banner h1{

    font-size:48px;

    margin-bottom:15px;

}

.gallery-banner p{

    font-size:20px;

    max-width:700px;

    margin:auto;

}

/*==================================
      Contact Banner
==================================*/

.contact-banner{

    background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),
    url("images/contact-banner.jpg");

    background-size:cover;

    background-position:center;

    height:350px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.contact-banner h1{

    font-size:48px;

    margin-bottom:15px;

}

.contact-banner p{

    font-size:20px;

    max-width:700px;

    margin:auto;

}

/*==================================
      Gallery Introduction
==================================*/

.gallery-intro{

    padding:70px 20px;

    text-align:center;

}

.gallery-intro h2{

    font-size:36px;

    color:#1B5E20;

    margin-bottom:20px;

}

.gallery-intro p{

    max-width:800px;

    margin:auto;

    line-height:1.8;

    color:#555;

}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.gallery-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    text-align:center;
}

.gallery-item img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.gallery-item h3{
    padding:15px;
    color:#1B5E20;
    font-size:25px;
}

.gallery-section{
    text-align:center;
    padding:60px 20px;
}

.gallery-section h2{
    font-size:38px;
    color:#1B5E20;
    margin-bottom:10px;
}

.gallery-section p{
    color:#555;
    margin-bottom:40px;
}

.gallery-grid{
    margin-top:40px;
}

/*==================================
        Gallery CTA
==================================*/

.gallery-cta{

    background:#1B5E20;

    color:#fff;

    text-align:center;

    padding:80px 20px;

}

.gallery-cta h2{

    font-size:40px;

    margin-bottom:20px;

}

.gallery-cta p{

    max-width:700px;

    margin:0 auto;

    line-height:1.8;

    font-size:18px;

}

.gallery-cta .cta-btn{

    display:inline-block;

    margin-top:30px;

    padding:15px 35px;

    background:#FFD700;

    color:#1B5E20;

    text-decoration:none;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}

.gallery-cta .cta-btn:hover{

    background:#fff;

    color:#1B5E20;

}

/*==================================
        Contact Banner
==================================*/

.contact-banner{

    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("images/contact-banner.png");

    background-size:cover;

    background-position:center;

    height:350px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

}

.contact-banner h1{

    font-size:48px;

    margin-bottom:15px;

}

.contact-banner p{

    font-size:20px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

}

/*==================================
      Contact Information
==================================*/

.contact-info{

    padding:80px 20px;

    text-align:center;

}

.contact-info h2{

    font-size:38px;

    color:#1B5E20;

    margin-bottom:40px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:40px;

}

.contact-card{

    background:#ffffff;

    padding:40px 20px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(179, 101, 101, 0.15);

    text-align:center;

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-30px);

}

.contact-card h3{

    color:#1B5E20;

    margin-bottom:15px;

}

.contact-card p{

    color:#555;

    line-height:1.8;

}

/*==================================
        Contact Form
  ==================================*/

.contact-form-section{

    padding:80px 20px;
 

    text-align:center;

}

.contact-form-section h2{

    font-size:38px;

    color:#042507;

    margin-bottom:40px;

}

.contact-form{

    max-width:700px;

    margin:auto;

    display:grid;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#1B5E20;

}

.contact-form button{

    background:#1B5E20;

    color:white;

    padding:15px;

    border:none;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#FFD700;

    color:#1B5E20;

}

/*==================================
        Google Map
==================================*/

.map-section{

    padding:80px 20px;

    text-align:center;

}

.map-section h2{

    font-size:38px;

    color:#1B5E20;

    margin-bottom:30px;

}

.map-container{

    max-width:100%;

    margin:auto;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

.map-container iframe{

    width:100%;

    height:450px;

    border:0;

}

/*==================================
        Footer
==================================*/

.footer{

    background:#1B5E20;
    color:white;
    padding:60px 20px 20px;

}

.footer-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    max-width:1200px;
    margin:auto;

}

.footer-logo{

    width:90px;
    margin-bottom:15px;

}

.footer-box h3{

    color:#FFD700;
    margin-bottom:20px;

}

.footer-box p{

    line-height:1.8;

}

.footer-box ul{

    list-style:none;
    padding:0;

}

.footer-box ul li{

    margin:12px 0;

}

.footer-box ul li a{

    color:white;
    text-decoration:none;
    transition:.3s;

}

.footer-box ul li a:hover{

    color:#FFD700;

}

.social-icons{

    display:flex;
    gap:15px;
    margin-top:20px;

}

.social-icons a{

    width:45px;
    height:45px;
    background:white;
    color:#1B5E20;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:20px;
    transition:.3s;

}

.social-icons a:hover{

    background:#FFD700;
    transform:translateY(-5px);

}

.footer hr{

    margin:40px 0 20px;
    border:.5px solid rgba(255,255,255,.3);

}

.copyright{

    text-align:center;
    font-size:15px;

}