@font-face {
  font-display: swap;
  font-family: "Bord";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/BordRegular.ttf"); /* IE9 Compat Modes */
  src: url("../fonts/BordRegular.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/BordRegular.woff2") format("woff2"); /* Super Modern Browsers */
}

@font-face {
  font-display: swap;
  font-family: "Bahnschrift";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Bahnschrift.ttf"); /* IE9 Compat Modes */
  src: url("../fonts/Bahnschrift.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("../fonts/Bahnschrift.woff2") format("woff2"); /* Super Modern Browsers */
}

/* general stuff */
body {
  padding-top: 116px;
}

.text {
  font-size: 20px;
  font-family: "Bahnschrift";
}

.dark-background {
  background-color: #363636;
}

.screen-height {
  min-height: calc(100vh - 100px);
}
.image {
  border-radius: 5%;
  max-height: 375px;
  width: auto;
}
.icon {
  max-height: 100px;
  width: auto;
}

.link {
  color: #363636;
  text-decoration: none;
  font-weight: bold;
}
.link:hover {
  color: black;
  text-decoration: underline;
}

/* Fonts */
.bahnschrift {
  font-family: "Bahnschrift";
}

.bord {
  font-family: "Bord";
}

/* navbar*/
.navbar-logo {
  max-width: 200px;
  width: 100%;
  border-radius: 14px;
}
.navbar-nav {
  flex-wrap: wrap-reverse;
}
.nav-item {
  width: fit-content;
}

/* footer*/
footer {
  padding-top: 30px;
  padding-bottom: 50px;
}

.social-icons {
  font-size: 30px;
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.social-icons a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.social-icons a:hover {
  color: #e5e5e5;
}

.footer-title {
  font-size: 30px;
  color: white;
  margin-bottom: 30px;
  letter-spacing: 10px;
  line-height: 1;
}

.footer-title-span {
  letter-spacing: 3.5px;
  font-size: 24px;
  display: inline-block;
  margin-top: 12.5px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-nav ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
}

.footer-nav li {
  border-right: 1px solid white;
  padding-right: 5px;
  margin-right: 5px;
}

.footer-nav li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* index*/
.landingpage-background-picture {
  background-image: url(../img/landing.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.landingpage-background-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.landing {
  text-align: center;
  font-size: 70px;
  line-height: 1;
  color: white;
  margin-top: 100px;
  margin-bottom: 50px;
  border-bottom-style: inset;
  padding-bottom: 50px;
}

.landing-text {
  letter-spacing: 4.5px;
  font-size: 28px;
}

.btn a {
  color: white;
  text-decoration: none;
}

.keywords {
  font-size: 30px;
  font-weight: bold;
}

.softwarelösungen-text {
  font-size: 55px;
}

.brace-img {
  width: 100%;
  max-height: 100px;
}

/* leistungen */
.leistungen-numbers {
  font-family: "bord";
  font-size: 95px;
  width: 150px;
  height: 150px;
  border-radius: 45px;
  color: white;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.leistungen-quick {
  border-radius: 15px;
}

/* about */
.about-img {
  max-width: 100%;
  border-radius: 50px;
}

/* kontakt */
.kontakt-input {
  background-color: #fff;
}
.kontakt-input:focus {
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
}

/* projekte */
.project-item-headline {
  font-size: 20px;
  font-weight: bold;
}

.project-item-content {
  font-size: 18px;
}

.project-headline {
  font-size: 28px;
}

/* private */

/* 404 */
.error-container {
  min-height: 1000px;
}
.error-background-picture {
  background-image: url(../img/error.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.error-text {
  text-align: center;
  font-size: 25px;
  color: white;
  margin-top: 100px;
  padding-bottom: 30px;
}

/* Media Queries */
@media (min-width: 768px) {
  body {
    padding-top: 139px;
  }

  .navbar-logo {
    max-width: 250px;
  }
  .screen-height {
    min-height: calc(100vh - 139px);
  }
}
@media (min-width: 568px) {
  .landing {
    font-size: 120px;
  }
  .landing-text {
    font-size: 50px;
  }
}
