@import url("./general.css");


.text {
  color: rgb(0, 0, 0); 
  font-size: var(--font-size); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.texttitlesolo {
  color: rgb(0, 0, 0); 
  font-size: calc(var(--font-size) * 0.7); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.text:hover {
  opacity: 0.3; 
}

.texttitle {
  color: rgb(0, 0, 0); 
  font-size: var(--font-size); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7vh;
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
  transition: backdrop-filter 0.3s ease;
}

.top-left-text {
  position: absolute;
  left: 1vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-left-text img {
  height: 7vh;
}

.top-left-text-about {
  position: absolute;
  left: 1vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-left-text-about img {
  height: 4vh;
}

.top-right-text {
  position: absolute;
  right: 0.5vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-right-text img {
  height: 6vh;
}

.logo-animated {
  display: none;
}

.logo-static {
  display: block;
}

.top-left-text:hover .logo-static,
.top-right-text:hover .logo-static,
.top-left-text-about:hover .logo-static {
  display: none;
}

.top-left-text:hover .logo-animated,
.top-right-text:hover .logo-animated {
  display: block;
}

.top-left-text-about:hover .logo-animated,
.top-right-text-about:hover .logo-animated {
  display: block;
}

.top-left-text-date {
  position: absolute;
  left: 20vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.bottom-bar {
  position: fixed;
  width: 100%;
  height: 7vh;
  background-color: rgba(255, 255, 255, 0);
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  
}

.scrolling-wrapper {
  display: flex;
  width: max-content;
  animation: scrollText 50s linear infinite;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scrolling-text p {
  font-size: calc(var(--font-size) * 0.7);
  margin: 0 2vw;
  display: inline;
  opacity: 1;
}

.scrolling-text a {
  transition: opacity 0.3s ease;
}

.scrolling-text a:hover {
  opacity: 0.3;
}


@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.custom-link {
  color: inherit; 
  text-decoration: none; 
}





