
  @font-face {
  font-family: "Inter";
  src: url("https://sixrooms.de/fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("https://sixrooms.de/fonts/Inter-ExtraBold.ttf") format("truetype"),
    url("https://sixrooms.de/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Robotocondensed";
  src: url(".https://sixrooms.de/fonts/RobotoCondensed-Bold.ttf")
      format("truetype"),
    url("https://sixrooms.de/fonts/RobotoCondensed-ExtraBold.ttf")
      format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: "Robotocondensed", sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: black;
}
p {
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.toggler {
  height: 1px; /* Anpassbare Höhe */
  cursor: pointer;
  margin-top: 50px;
  /* Weitere Styles für den Toggler */
}

.toggle-content {
  display: none;
  font-family: sans-serif;
  /* Weitere Styles für den ausgeklappten Inhalt */
}

.homeLink {
  font-size: 12rem;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.claim {
  position: relative;
  z-index: 2;
  margin: 10px 0;
}
.claim-behind {
  z-index: 0;
}

.background-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  width: 500px;
  height: auto;
  z-index: 1;

  border-radius: 0.75rem;
}

.background-image,
.text {
  transition: transform 0.1s ease-out;
}

.logo {
  margin-top: 1vw;
  margin-left: 0.5vw;
  height: 80px;
}

.fixed-navbar {
  display: flex;
  margin-top: auto;
  width: 100%;
  padding-right: 3rem;
  padding-bottom: 1.5vw;
  padding-left: 3rem;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.link-block {
  gap: 10px;
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 0.8;
}
.title-block {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.8;
}
/*responsive Design*/
@media screen and (max-width: 1260px) {
  /* Zusätzliche Regeln für kleinere Monitore  */
  .homeLink {
    font-size: 7rem;
  }
  .background-image {
    width: 400px;
  }
}
@media screen and (max-width: 760px) {
  /* Zusätzliche Regeln für kleinere Monitore  */
  .homeLink {
    font-size: 5rem;
  }
  .background-image {
    width: 300px;
  }
}
@media screen and (max-width: 500px) {
  /* Zusätzliche Regeln für kleinere Monitore  */
  .homeLink {
    font-size: 3rem;
  }
  .background-image {
    width: 200px;
  }
}
