body, html {
    height: 100%;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("img/ML_and_DS.jpeg");

  /* Set a specific height */
  height: 85%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.container-fixed-size{
	background-color:#395194;
	color:white;
    /*height:570px;*/
	height:100%;
    width:100%;
}
.carousel-indicators li {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    background-color: #404040;
    bottom: 10px; 
	top-margin: 70px;
}

/*fixed size container*/

.differentiators {
  background-color: white;
  color: black;
  padding: 0px;
}

hr.new {
  border-top: 3px solid white;
}
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea, email, number {
  width: 100%; /* Full width */
  height: 100%; /* new entry */
  padding: 10px; /* Some padding */ 
  border: 0px solid #ccc; /* Gray border */
  border-radius: 2px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 3px; /* Add a top margin */
  margin-bottom: 3px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #395194;
  color: white;
  padding: 5px 5px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: black;
}