.navbar{
  background-color:crimson;
}

.primary-underline {
  display: inline-block;
  background-image: linear-gradient(to right, crimson, black); /* Set the gradient colors */
  background-size: 100% 2px; /* Set the thickness of the gradient underline */
  background-position: 0 100%; /* Position the gradient at the bottom */
  background-repeat: no-repeat; /* Ensure the gradient is not repeated */
  padding: 5px 0px;
}

.nav-link-header{
  color:white;
  font-weight: bold;
  letter-spacing: 2px;
}

.footer-text{
  color: black;
  font-size: 12px;
}

.nav-link-footer:hover, .footer-text:hover{
  color: crimson;
}
.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}

.btn-primary{
  background-color: crimson;
  color: white;
  border-color: crimson;
}

.btn-primary:hover{
  background-color: white;
  color: black;
  border-color: white;
}

.parallax {
  /* The image used */
  background-image: url("../img/background.jpg");

  /* Set a specific height */
  min-height: 300px;

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

#parallax-page{
  background-color:white; 
  opacity:0.5
}

@media only screen and (min-width: 600px) {
	#web-description{
		margin-left: 150px;
		margin-right: 150px;
	}
}
