body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  .header {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 140px;
    height: auto;
    margin-right: 10px;
  }
  
  .nav {
    text-align: center;
  }
  
  .nav-list {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li {
    display: inline-block;
    margin-right: 20px;
  }
  
  .nav-list li:last-child {
    margin-right: 0;
  }
  
  .nav-list a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
  }
  
  .nav-list a:hover {
    color: #ccc;
  }

.intro-text {
    font-family: verdana;
    text-align: center;
    padding: 10px;
  }
  
  .intro-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .intro-text p {
    font-size: 16px;
    color: #666;
  }

.line{  
  background-color: #ddd;
  margin: 40px;
}

.video-box iframe {
  max-width: 100%;
}

/*Category*/

.category {
  font-family: verdana;
  text-align: left;
  padding: 20px;
}
 
 .catagory h2{
  font-size: 16px;
  margin-bottom: 10px;
 }

/*PRODUCTS*/

.products {
    display: flex;
    justify-content: center;
    padding: 30px;
  }
  
  .product {
    text-align: center;
    margin: 0 20px;
  }
  
  .product img {
    max-width: 100%;
  }
  
  .product h2 {
    margin-top: 10px;
  }
  
  .product a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }

  .product-box {
    margin: 10px;
    border: 2px solid #ddd;
    padding: 30px;
    text-align: left;
    display: flex;
    align-items: center;
}

.product-box img {
    width: 170px;
    height: 170px;
    margin-right: 200px;
    margin-left: 130px;
}

.product-box p.specs {
  font-size: 12px;
  color: gray;
}
 
/*WALLPAPERS*/

main {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wallpaper {
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: calc(50% - 20px);
  margin-bottom: 20px;
  overflow: hidden;
}

.wallpaper h2 {
  font-size: 18px;
  padding: 10px;
}

.wallpaper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.download-button {
  display: inline-block;
  background-color: red;
  color: #fff;
  padding: 8px 15px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px
}

/*Reviews*/

.reviews {
  background-color: #fff;
  border-radius: 8px;
  width: calc(50% - 20px);
  margin-bottom: 20px;
  overflow: hidden;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
  padding: 20px;
}

.video-box {
  padding: 7px;
  text-align: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

/* Visit  Us */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

/* Visit Us */

.store {
  margin: 10px;
  border: 2px solid #ddd;
  padding: 30px;
  text-align: left;
  display: flex;
  align-items: center;
}

.store img {
  width: 250;
  height: 150px;
  margin-right: 30px;
}

.store p.address {
font-size: 12px;
color: gray;
}