/*
 * Globals
 */

.textheading1 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #e0df63;
}
.textheading2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e0df63;
}

.mylink {
  color: #b9b9b9;
  text-decoration: underline dotted;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  transition: color 0.2s ease;
}

.mylink:hover {
  color: #e0df63;
  text-decoration: underline dotted;
}

/* Custom default button */
.btn-light,
.btn-light:hover,
.btn-light:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */
/*
 * Über das Hintergrundbild wird ein Haldtransarnter Schatten gelegt
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  /*box-shadow: inset 0 0 15rem rgba(0, 0, 0, .5);*/
  background: url('./images/bgimage000.png') no-repeat center center fixed;
  background-size: cover;
  /*background-attachment: fixed; /* optional: Bild bleibt beim Scrollen */

}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* transparenter schwarzer Schleier */
  z-index: 0;
  pointer-events: none;
}

/* Inhalt soll über dem Overlay liegen */
.cover-container {
  z-index: 1;
}

.cover-container {
  max-width: 42em;
}


/*
 * Header
 */

.nav-masthead .nav-link {
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
  
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}
