body, html {
  height: 100%;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* root Magdalena */
      :root {
  --base: #005000;
  --linkhover: #2d802d;
  --background: #f4ebd9
}

/* root Bernie */

/*:root {
  --base: #880000;
  --linkhover: #bd0000;
  --background: #e1c699
}*/


.background-image {
  background-color: #cccccc;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow:inset 0 0 0 2000px rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 10% ;
  }


.content
{
	float: left;
	width: 500px;
	padding: 20px 0;
	margin: 0 0 0 30px;
}
/* Link
    a:link - a normal, unvisited link
    a:visited - a link the user has visited
    a:hover - a link when the user mouses over it
    a:active - a link the moment it is clicked
*/
a {
  color:  var(--base);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
    color: var(--linkhover)
}

/* alert */
.alert.success {
  color: white;
  background-color: var(--base);
}

.alert.error {
  background-color: #ff8772;
}

/* homepage.html */
.home-piclabel {
    font-family: "Handlee", sans-serif;
    font-size: 30px;
    text-shadow: 3px 3px 3px #ababab;
    color: black;
    background-color:rgba(255,255,255,0.35);
    padding:10px 10px;
    width:100%;
}

.carousel-caption {
   position: absolute;
   top:10%
}

.btn {
    background-color: var(--base);
    border: none
}

.btn:hover{
    background-color: var(--linkhover)
    }
/* base.html */
* {
    font-family: "Handlee";
}

.nav-link {
  color: var(--base) !important;
  margin-right: 20px;
}

.dropdown-menu{
    color: var(--base);
    text-align: right
}

.dropdown-item{
    color: var(--base)
}