
@font-face {
  font-family: 'Montserrat';
  src: url('../../static/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../../static/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
}

.video-background {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #fff;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: #fff;
}

.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-overlay img {
    height: 10vh;
    max-width: 100%;
}

.about-section h1 {
    font-size: 4rem;
    padding: 90px 0;
    letter-spacing: 0.1em;
}

a {
  color: black;
  text-decoration: none; /* Optional: entfernt die Unterstreichung */
}
a:hover {
  color: #333; /* Optional: etwas dunkler beim Hover */
  text-decoration: underline; /* Oder was du magst */
}
.about-section .row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card img {
  border-radius: 100%;
}

.about-section img {
  max-height: 150px; /* Einheitliche Höhe, anpassen nach Wunsch */
  width: auto;
  margin-bottom: 15px;
  object-fit: contain; /* Bild bleibt im richtigen Seitenverhältnis */
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #b9b9b9 !important;
  --bs-btn-border-color: #b9b9b9;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a9a9a9;
  --bs-btn-hover-border-color: #a9a9a9;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a9a9a9;
  --bs-btn-active-border-color: #a9a9a9;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #a9a9a9;
  --bs-btn-disabled-border-color: #a9a9a9;
}

