body {
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    padding: 20px;
}

.logo-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.search-cart {
    display: flex;
    align-items: center;
}

.search-cart input {
    padding: 5px;
    margin-right: 10px;
}

.cart-icon {
    font-size: 24px;
    text-decoration: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-image: url('public/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    font-size: 48px;
    font-weight: bold;
}

.buy-supplements {
    font-size: 24px;
    text-align: center;
}

.filters {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.filters select {
    padding: 10px;
    background-color: #333;
    color: #ffffff;
    border: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.product-card {
    background-color: #2c2c2c;
    padding: 20px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-info {
    margin-top: 10px;
}

.product-info h3 {
    font-size: 18px;
}

.product-info p {
    font-size: 16px;
    color: #ccc;
}

.pagination {
    text-align: center;
    padding: 20px;
}

.pagination a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

nav {
    background-color: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    height: 50px;
    margin-left: 20%;
}

.nav-links {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0px;
    padding: 0px;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
}

.nav-links a {
    color: white;
    font-size: 280%;
    font-family: futura;
    text-decoration: none;
}

.nav-links a:hover{
  color: #707070;
}

.search-bar {
    margin-left: auto;
    position: relative;
    margin-right: 2%;
}

.search {
    position: absolute;
    top: 50%;
    right: 87%;
    transform: translate(0px, -50%);
    z-index: 1;
    width: 10%;
    opacity: 0.5;
}

input[type="text"] {
    width: 90%;
    font-family: "OCR A", sans-serif;
    padding: 4% 2% 4% 15%;
}

.account, .cart {
    height: 50px;
    margin-left: 3%;
    margin-right: 1%;
}