@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

/*--- Navigation/Logo --*/
.navbar {
  padding: .8rem;
}
.navbar-brand
{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20PX;
}
.navbar-brand img {
    width: 90px;   /* gewünschte Breite eintragen */
    height: auto;   /* hält das Seitenverhältnis */
}
.navbar
{
   padding: 4.5em 0 !important; 
}
.navbar-toggler
{
    border: none !important;
    outline: none !important;
}

/*-- Background Image --*/
.carousel-inner img {
  width: 100%;
  height: 100%; /*-- Bild wird am jeweiligen Screen bildschirmfüllend angezeigt --*/
}
.carousel-caption {
  position: absolute;
  top: 45%;
  text-shadow: 0 0 50px #fff;
  transform: translateY(-50%); /*-- Textposition im Headerbild --*/
}
.carousel-caption h2 {
  font-size: 500%;
  color: #222;
  text-transform: uppercase;
  padding-bottom: 2rem;
}
.carousel-caption h5 {
  font-size: 200%;
  font-weight: 500;
  color: #222;
}
.carousel-caption p {
  font-size: 150%;
  color: #222;
  padding-bottom: 2rem;
}
.btn-primary{
  background-color: #838bef !important;
  border: 1px solid #838bef !important;
  outline: none !important;
  box-shadow: none !important;
}
.btn-primary:hover {
  background-color: #6b74f4 !important;
  border: 1px solid #6b74f4 !important;
  color: #fff;

}
.btn-primary:active {
  outline: none !important;
  box-shadow: none !important;
}




/*-- Footer --*/
footer {
  color: #222; /*-- Schriftfarbe --*/
  padding-top: 1rem;
}
footer a {
  color: #222; /* Linkfarbe schwarz */
  text-decoration: none; /* optional: Unterstreichung entfernen */
}
footer a:hover {
  color: #838bef; /* verhindert Farbänderung beim Hover */
  text-decoration: none; /* optional: Hover-Effekt */
}



/*-- Media Queries --*/
/*-- Mit Medienabfragen (Media Queries) können Sie die Darstellung eines Dokuments
für verschiedene Ausgabemedien festlegen (https://wiki.selfhtml.org/wiki/CSS/Media_Queries).
Vgl. auch: https://www.w3schools.com/css/css_rwd_mediaqueries.asp --*/
@media (max-width: 992px) {
  }
@media (max-width: 768px) {
  .carousel-caption {
    top: 45%;
  }
  .carousel-caption h2 {
    font-size: 280%;
    padding-bottom: .3rem;
  }
  .carousel-caption h5 {
    font-size: 140%;
    font-weight: 400;
    padding-bottom: .2rem;
  }
  .carousel-caption p {
  font-size: 100%;
  font-weight: 200;
  padding-bottom: .2rem;
  }
  .carousel-caption .btn {
    font-size: 95%
    padding: 8px 14px;
  }
}
@media (max-width: 576px) {
  .carousel-caption {
    top: 40%;
  }
  .carousel-caption h2 {
    display: none;
  }
  .carousel-caption h5 {
    font-size: 160%;
  }
  .carousel-caption p {
    display: none;
  }
  .carousel-caption .btn {
    font-size: 90%
    padding: 4px 8px;
  }
  .carousel-indicators {
    display: none;
  }
}


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}





/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/
