body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f4f4f4;
  color: #333;
}

header h1, .heading-footer-menu-list{
  color: #eac8c8;
}

h1, h2, h3 {
  color: #8b5151;
}

a {
  text-decoration: none;
  color: #e81a61;
}

header {
  background-color: #240606;
  color: white;
  padding: 20px 0;
  text-align: center;
  font-family: monospace;
}

header a {
  color: white;
  margin: 0 10px;
}

nav {
  margin-top: 15px;
  text-align: center;
}

nav a {
  margin: 0 20px;
  padding: 10px;
  font-size: 16px;
  color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
}

nav a:hover {
  background-color: #444;
}

#banners{
  padding: 20px;
}

#banners p, #banners h3{
  color: #fff;
  text-shadow: -2px -1px 4px #000;
}

.banner-grid{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.banner-item-1, .banner-item-2, .banner-item-3{
  /*background: url('https://via.placeholder.com/300x200')*/
  /*height: 100%;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  width: 300px;
  justify-content: space-around;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 0 !important;
}

.banner-item-1{
  background: url(../img/banners/trenbolone.jpg);
}

.banner-item-2{
  background: url(../img/banners/turinabol.jpg);
}

.banner-item-3{
  background: url(../img/banners/nandrolone.jpg);
}

.products-header{
  text-align: center;
  text-shadow: -2px -1px 4px #b69797;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-item h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #4f3348;
  font-family: initial;
}

.product-item p {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

.product-item .price {
  font-size: 18px;
  font-weight: bold;
  color: #e81a61;
  margin-bottom: 15px;
}

.product-item button {
  background-color: #e81a61;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.product-item button:hover {
  background-color: #555;
}

#text-content{
  max-width: 1000px;
  margin: 0 auto;
}

#text-content li{
  padding: 10px;
}

#text-content table{
  border-collapse: collapse;
}

#text-content table th, #text-content table td{
  border: 1px solid black;
  padding: 10px;
}

#text-content img{
  display: flex;
  margin: 0 auto;
}
footer {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding-bottom: 40px;
}

.list-1, .list-2, .list-3{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-menu .text{
  max-width: 540px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer a {
  color: #e8cf1a;
}


@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  nav a {
    font-size: 14px;
    margin: 0 10px;
    padding: 8px;
  }

  .banner-grid {
    flex-direction: column;
    gap: 15px;
  }

  .banner-item-1, .banner-item-2, .banner-item-3 {
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 200px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
  }

  .product-item {
    padding: 15px;
  }

  .product-item h3 {
    font-size: 18px;
  }

  .product-item p {
    font-size: 14px;
  }

  .product-item .price {
    font-size: 16px;
  }

  footer {
    padding: 15px 0;
  }

  footer p {
    font-size: 12px;
  }

  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu .text {
    max-width: none;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 0;
  }

  nav a {
    font-size: 12px;
    padding: 6px;
    margin: 0 5px;
  }

  .banner-item-1, .banner-item-2, .banner-item-3 {
    height: 150px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-item {
    padding: 10px;
  }

  .product-item h3 {
    font-size: 16px;
  }

  .product-item p {
    font-size: 12px;
  }

  .product-item .price {
    font-size: 14px;
  }

  footer {
    padding: 10px 0;
  }

  footer p {
    font-size: 10px;
  }

  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-menu .text {
    padding: 10px;
  }
}
