html{
  scroll-behavior: smooth;
}
.body_heading {
  text-align: center;
  color: white;
}
.body_sub_heading {
  text-align: center;
  color: white;
}
body {
  background-color: #282c35;
}
.body_container {
  background-color: #282c35;
  margin-top: 20px;
}
.watches_text_div {
  margin: auto;
  height: 200px;
  width: 60%;
}
.categories_text_div {
  margin: auto;
  height: 100px;
  width: 60%;
}
.watches_text {
  margin-top: 30px;
  color: white;
  text-align: center;
}
.product_div {
  height: 400px;
  text-align: center;
  border: 2px solid #282c35;
  padding: 20px;
  border-radius: 10px;
}
.add-to-cart {
  background-color: #d50e2b;
  color: black;
  height: 45px;
  width: 222px;
  font-weight: 400;
  margin: auto;
  text-align: center;
  margin-top: 0;
  border-radius: 0px 0px 10px 10px;
  padding: 10px;
}
.add-to-cart:hover {
  background-color: black;
  color: white;
}
a:hover {
  text-decoration: none;
}
.product_image {
  border-radius: 10px 10px;
  background-color: white;
  padding: 10px;
  transition: transform 0.5s; /* Animation */
  margin: 0 auto;
}
.product_image:hover {
  transform: scale(1.1);
}
.product_detail {
  background-color: white;
  width: 222px;
  margin: auto;
  height: 60px;
  z-index: 1;
  margin-top: -7px;
}
.footer_div {
  height: 100px;
  background-color: black;
  padding: 40px 0px;
}
.footer_div h4 {
  color: white;
  margin: auto 1rem;
  text-align: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.footer {
  margin-top: 100px;
  background-color: black;
  color: white;
  font-size: 14px;
  text-align: left;
  padding-bottom: 10px;
}
.footer a{
  color: white;
  font-size: 15px;
}
.footer h3{
  color: #d50e2b;
}
.footer a:hover{
  color: #d50e2b;
}
.footer p{
  font-size: 18px;
}

.contact_div {
  background-color: #f3f3f3;
  border-radius: 10px;
  height: 400px;
  padding: 20px;
}
.watch_overview_div {
  background-color: #f3f3f3;
  height: 400px;
  padding: 20px;
}

@media (max-width: 500px) {
  .watches_text_div {
    margin: auto;
    height: 300px;
    width: 100%;
  }
  .categories_text_div {
    margin: auto;
    height: 100px;
    width: 100%;
  }

}
@media (max-width: 700px) {
  .watches_text_div {
    margin: auto;
    height: 400px;
    width: 100%;
  }
  .categories_text_div {
    margin: auto;
    height: 100px;
    width: 100%;
  }
}
