#scape {
  position: absolute;
  top: 0;
  width: 100%;
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.scape-title {
  font-size: 8rem;
  transition: opacity 0.5s, filter 0.5s;
  z-index: 2;
  font-family: var(--akzenttext);
  text-transform: lowercase;
  color: var(--akzent-flash2);
}

.scape-title a {
  all: unset;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}


.parallax {
  background-image: url(../../../images/nemo/nemo_landscape.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 85vh;
  position: relative;
  z-index: 0;
  will-change: background-position;
  overflow: hidden;
}

.parallax-fadeout {
  height: 20px;
  width: 100%;
  background: linear-gradient(to bottom, var(--tbl-main) 0%, rgba(0, 0, 0, 0) 100%);
  margin-top: 0px; /* überlappt den unteren Parallax-Rand */
  z-index: 1;
  position: relative;
  pointer-events: none;
}

:root {
  --frame-padding: 30px;
}

body {
  margin: 0;
  overflow-y: auto;
}

.board-content {
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: auto;
  border: 1px solid var(--akzent-flash);
  box-sizing: border-box;
}

.board-frame {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  background: var(--tbl-main);
  padding: 0px 30px 30px 30px;
  box-sizing: border-box;
  border: 1px solid var(--akzent-flash);
}

.welcome-strip {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%
  margin: 0 auto;
  padding: 10px;
  background: var(--tbl-main);
  border-bottom: 1px solid var(--akzent-flash);
  text-align: center;
  font-size: var(--txtsmall);
  color: var(--akzent-flash);
  z-index: 10;
}

.frame-left,
.frame-right {
  position: fixed;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  font-size: var(--txtm);
  height: 100%;
}

.frame-left {
  left: 0;
}

.frame-right {
  right: 0;
}

.nav-icon {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-icon a {
  color: var(--akzent-flash);
  transition: color 0.3s ease;
}

.nav-icon a:hover {
  color: var(--akzent-red);
}

.nav-info {
  color: var(--akzent-flash);
  font-size: var(--txtxxsmall);
  padding: 3px;
}

.frame-content {
  background: var(--tbl-main);
  box-sizing: border-box;
  overflow-x: hidden;
}

.board-start {
  height: 1px;
  background: var(--akzent-dkl);
  margin: 30px auto;
  width: 80%;
  opacity: 0.3;
}

.navigation {
  color: var(--akzent-red);
  position: relative;
  padding: 10px 20px;
  font-size: var(--txtxsmall);
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--tbl-main);
  text-transform: uppercase;
}
