#fixed-container{
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgb(121,116,200);
  background: linear-gradient(180deg, rgb(67, 61, 129) 0%, rgb(8, 118, 139) 100%);
}

#wrapper{
  width: 100vw;
  display: flex;
  flex-direction: column;
}

#welcome-container-logo{
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: absolute;
}

#welcome-container{
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mountains{
  width: 100vw;
  z-index: 4;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 5%;
  padding-left: 5%;
}

#micellaway{
  width: 80vw;
  height: auto;
  z-index: 5;
  position: absolute;
}

#svg{
    height: auto;
    z-index: 1;
    position: absolute;
    width: 50%;   /* Breite der SVG auf 50% des Viewports */

}

#ship-path{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

#ship{
  position: absolute;
  z-index: 2;
  width: 50vh;
  height: auto;
  top: 400px;
  left: 400px;
}

#river-image{
  width: 100vw;
  height: auto;
  position: relative;
}

 /* From Uiverse.io by mrhyddenn */ 
 .scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: fixed;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX / 2);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 4;
  top: 90%;
  left: 50%;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #2a547066;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }

  40% {
    opacity: 1;
    height: 10px;
  }

  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }

  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.5;
  }
}

.notification{
  position: absolute;
  z-index: 4;
  width: 50%;
background: #fff;
border-radius: 16px;
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}

.notification:hover{
  background: rgba(255, 255, 255, 0.5);
}

.notification:before{
  background: none;
}


.notification:nth-child(even) {
  align-self: flex-start; /* Align left */
}

.notification:nth-child(odd) {
  align-self: flex-end; /* Align right */
}


.notibody{
  font-size: 2.5vh;
}

@media only screen and (max-width: 700px) {
  .notibody{
    font-size: 2vw;
  }

  .notititle{
    font-size: 2vw;
    padding: 0px;
    padding-left: 10px;
  }

  .notification{
    width: 100%;
  }

  .notification:nth-child(even) {
    align-self: center;
  }
  
  .notification:nth-child(odd) {
    align-self: center;
  }
}

/*SVG ANIMATION*/
#welcome-container-logo svg path {
  z-index: 2;
  stroke: #e38500;
  stroke-width: 10;
  fill: #e38500; /* Define the fill color here */
  fill-opacity: 0;  /* Start with the fill hidden (transparent) */
  animation: draw 5s ease forwards;  /* Stroke animation */
  transition: fill-opacity 1s ease;  /* Fade in the fill */
}
a {
  color: #6E60B5;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #231B6E;
}
/* Animation to animate the stroke-dashoffset */
@keyframes draw {
  to {
      stroke-dashoffset: 0;
  }
}



