@import url(https://fonts.googleapis.com/earlyaccess/amiri.css);
@keyframes MoveToLeft {
    from {right: 0%;}
    to {right: 80%;}

  0% {filter: blur(0.0px); color: #fff;} 
  25% {filter: blur(0.50px);color: #000;} 
  50% {filter: blur(1.5px);color: #000;} 
  100% {filter: blur(2.0px); color: #fff;} 
}

body {
    font-family: "Amiri","Arial", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f8fb;
}

header {
    background-color: rgb(101, 101, 99);
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header-content {
    display: flex;
    align-items: center;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.header-content img {
    width: 80px;
    height:auto;
    float: left;
    border-radius: 100%;
}
.header-content h1 {
    font-size: 5rem;
    left: 10px;
    margin: 0;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: marigin-right 3s ;
}

nav ul li a:hover {
    background-color: rgb(101, 101, 99, 0.15);
    color: white;
}

nav ul li a.active {
    text-decoration: underline;
}

.ind-container {
    padding: 40% 0;
    margin: 0px;
}

.ind-container h1 {
    text-align: none;
    font-size: 60px;
}

.error {
    text-align: center;
}

.ind-container p {
    font: 2.2rem "Amiri", "Serif";
    position: relative;
    top: 10px;
    text-align: right;
}

.ind-container p {
    animation-name: MoveToLeft;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.product {
    background-color: white;
    margin: 10px;
    padding: 20px;
    width: calc((100% / 2) - 40px);
    box-shadow: 0 2px 6px rgb(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgb(0, 0, 0, 0.15);
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product h2 {
    color: #333;
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer ul {
    list-style-type: none;
}

footer ul li {
    display: inline;
    padding: 20px;
}

footer a {
    font-family: Arial, Helvetica, sans-serif;
    color: #F2F2F2;
    text-align: center;
    text-decoration: none;
    font-size: 17px;
}

footer a:hover {
    background-color: #bbcbf3;
    color: white;
}


@media screen and (max-width: 480px) {
    header {
        width: 100%;
        padding: auto auto;
    }
    nav ul li {
        margin: 0 0px;
    }
    nav ul li a {
        font-size: 15px;
        padding: 0 10px;
    }
}