/* change the background color */
body {
  background-color: #ffffff;
  font-family: Comfortaa;
}
.bg-custom{
  background-color:#000000;
}
.nav-item{
  margin-left: 30px;
}


.parallax1 {
  /* The image used */
  background-image: url("/img/makeup1.jpg");
  /* Set a specific height */
  height: 40%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
}
.parallax2 {
  /* The image used */
  background-image: url("/img/makeup2.jpg");

  /* Set a specific height */
  height: 40%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

