/* General Element Styling */
body {
  background-color: black;
}

#main-title {
  color: white;
  font-family: "Dancing Script", cursive;
  font-size: 50px;
  margin-top: 50px;
}

#tagline {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: 24px;
  margin-top: 1%;
  margin-bottom: 1%;
  text-align: center;
}

.navbar-brand {
  margin: 0 auto;
}

#search-col {
  margin-top: 20px;
}

.product {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.input-group.mb-3 {
  font-family: "Cormorant Garamond", serif;
}

.search-tagline {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: 24px;
  margin-top: 1%;
  margin-bottom: 1%;
  text-align: center;
}

/* Buttons */
#searchButton {
  color: white;
  background-color: black;
  border-color: white;
  border-width: 3px;
  height: 40px;
  width: 50px;
  padding: 9px;
}

#searchButton:hover {
  background-image: linear-gradient(
    to right,
    #e09590 0%,
    #f7bb97 51%,
    #fccbbc 100%
  );
  border-color: white;
}

#searchButton:focus {
  background-image: linear-gradient(
    to right,
    #e09590 0%,
    #f7bb97 51%,
    #fccbbc 100%
  );
  border-color: white;
  outline-style: none;
}

.filter-btn {
  color: white;
  background-color: black;
  border-color: white;
  border-width: 2px;
  margin: 20px 5px 0px 0px;
  width: 130px;
}

.filter-btn:hover {
  background-image: linear-gradient(
    to right,
    #e09590 0%,
    #f7bb97 51%,
    #fccbbc 100%
  );
  border-color: white;
}

.filter-btn:focus {
  background-image: linear-gradient(
    to right,
    #e09590 0%,
    #f7bb97 51%,
    #fccbbc 100%
  );
  border-color: white;
  outline-style: none;
}

.type-btn {
  color: white;
  background-color: black;
  border-color: white;
  border-width: 2px;
  margin: 20px 5px 0px 0px;
  width: 105px;
}

.type-btn:hover {
  background-image: linear-gradient(
    to right,
    #fccbbc 0%,
    #f7bb97 51%,
    #cf6861 100%
  );
  border-color: white;
}

.type-btn:focus {
  background-image: linear-gradient(
    to right,
    #fccbbc 0%,
    #f7bb97 51%,
    #cf6861 100%
  );
  border-color: white;
  outline-style: none;
}

/* Results List Styles */
.results-line {
  border-bottom: 1px solid white;
  margin-bottom: 20px;
  margin-top: 20px;
}

.results-image {
  height: 200px;
  width: 200px;
  float: left;
  margin-right: 25px;
}

.results-btn {
  float: right;
  margin-bottom: 30px;
}

.names {
  font-family: "Dancing Script", cursive;
  color: white;
}

.prices {
  color: white;
}

.description {
  color: white;
}

/* Modal Styles */
#product-details {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 3%);
  color: white;
  background-color: black;
  padding: 20px;
  border: 5px solid white;
  outline-style: none;
}

#detail-name {
  font-family: "Dancing Script", cursive;
  margin-left: 165px;
}

#detail-brand {
  border-bottom: 2px solid white;
  margin-bottom: 23px;
  margin-left: 165px;
}

#detail-tags {
  margin: 0px 0px 0px 170px;
}

.modal-image {
  height: 150px;
  width: 150px;
  float: left;
}

.modal-map {
  position: relative;
  height: 400px;
  width: 400px;
  left: "50%";
  margin-top: 15%;
}


/* Background Image Styles */
.makeup-swoosh-img {
  position: fixed;
  top: 20px;
  right: 0;
  transform: rotate(-35deg);
}

.makeup-swoosh-img-2 {
  position: fixed;
  top: 700px;
  left: 0;
  transform: rotate(22deg);
  z-index: -1;
}

.makeup-stroke-img {
  margin: auto;
  text-align: center;
}

.makeup-stroke {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Title Image */
#makeup-img {
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
  border: 4px solid white;
  padding: 20px;
}
#results-col {
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  #makeup-img {
    max-width: 300px;
    height: auto;
  }
}
