body {
  background-color: #08030c;
  color: whitesmoke;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('../media/brick_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.modal-content {
  background-color: #2c1042;
  color: whitesmoke;
}

a {
  text-decoration: none;
  color: whitesmoke;
}

.section {
  padding: 50px;
  text-align: center;
}

.section h3 {
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(102, 95, 103, 0.4);
  max-width: 50%;
  border-radius: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.product {
  text-align: center;
  position: relative;
}

.product img {
  position: relative;
  max-width: 101%;
  padding-top: 20px;
}

.product .detail-img {
  max-width:90%;
  padding-top: 20px;
}

.product h4 {
  position: relative;
  margin-top: 20px;
}

#no-results{
  background-color: rgba(102, 95, 103, 0.534);
  border-radius: 5px;
}

.detail-info{
  background-color: rgba(102, 95, 103, 0.534);
  border-radius: 5px;
  padding: 10px;
}

.detail-info p.price{
  font-weight: bold;
}

.form-label {
  background-color: rgba(102, 95, 103, 0.534);
  padding: 2px;
  border-radius: 5px;
}

.contact-span {
  background-color: rgba(102, 95, 103, 0.534);
  padding: 10px;
  border-radius: 10px;
}

.card-body{
  background-color: #2c1042;
}

.card-body span{
  padding: 25px;
}