body {
    background-position: center fixed;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 0;
}

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 0;
    position: fixed;
    /* Stay in place */
    z-index: 2;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/opacity */
    overflow-x: hidden;
    /* Disable horizontal scroll */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%;
    /* 25% from the top */
    width: 100%;
    /* 100% width */
    text-align: center;
    /* Centered text/links */
    margin-top: 30px;
    /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #f1f1f1;
    display: block;
    /* Display block instead of inline */
    transition: 0.3s;
    /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
    color: red;
    font-weight: bolder;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 570px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.classNavbar {
    z-index: 1000;
    position: fixed;
    top: 0;
    background-color: rgba(232, 10, 10, 0.644);
    width: 100%;
}

.handwriting {
    font-family: 'Bangers', cursive;
    font-size: 40px;

}

.handwriting1 {
    font-family: 'Pacifico', cursive;
    font-size: 30px;
    font-weight: bold;
}

.textmannschaft {
    font-size: large;
    background-color: rgba(255, 255, 255, 0.919);
    box-shadow: 0px 10px 15px black;
    text-align: center;
}

.bildmannschaft {
    background-color: rgba(255, 255, 255, 0.89);
    box-shadow: 0px 10px 15px black;
}
.footer {
    padding: 15px 0;
    background-color: rgba(232, 10, 10, 0.644);
  }
  
  .footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
    color: whitesmoke;
  
  }
  
  .footer ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    color: white;
  
  }
  
  .footer ul li {
    display: inline-block;
    padding: 0 15px;
  }
  
  .footer ul li a:hover {
    opacity: 1;
    color: black;
    font-weight: bold;
  }
  
  .footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: whitesmoke;
    font-weight: bold;
  }

  .bgimg {
    /* Background image */
    background-image: url('/pics/hintergrund.jpg');
    /* Full-screen */
    height: 100%;
    /* Center the background image */
    background-position: center;
    /* Scale and zoom in the image */
    background-size: cover;
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    position: relative;
    /* Add a white text color to all elements inside the .bgimg container */
    color: white;
    /* Add a font */
    font-family: "Courier New", Courier, monospace;
    /* Set the font-size to 25 pixels */
    font-size: 25px;
  }
  
  /* Position text in the top-left corner */
  .topleft {
    position: absolute;
    top: 0;
    left: 16px;
  }
  
  /* Position text in the middle */
  .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 70%);
    text-align: center;
  }

  /* Kontaktformular */ 
  .daten{
    background-color: rgba(255, 255, 255, 0.89);
    box-shadow: 10px 10px 15px black;
    border-radius: 10px;
  }
  /* Google Maps */
  .gmaps {
    width: 100%;
    height: 100%;
  }

  .impressum{
    background-color: rgba(255, 255, 255, 0.89);
    border-radius: 10px;
    box-shadow: 10px 10px 15px black;
  }