@import url("https://fonts.googleapis.com/css2?family=Jersey+25+Charted&family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Changa:wght@200..800&family=Pixelify+Sans:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jersey+10&display=swap");


/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}


/* Basic Selectors */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jersey 10", sans-serif;
}

body {
  color: #f2f2f2;
  background-color: #1a1a1a;
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;

  font-family: "Teko", sans-serif;
  font-style: normal;
  font-size: 50px;

  display: flex;
  justify-content: center;
  
  margin: auto;
}

mark {
  background-color: transparent;
  color: #f89cff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
}

header {
  font-size: 3.6vw;
}

header img {
  width: 20vw;
  height: relative;
}

/* Class Selectors */


.bg-img {
  position: fixed;
  
  width: 100%;
  height: 100%;
  
  opacity: 1; /* Start at 100% opacity */
  transition: opacity 0.3s ease-out; /* Smooth transition */
}

.navbar {
  position: absolute;
  top: 0.25vw;
  left: 0%;

  width: 100%;
  height: 6%;

  background-color: transparent;

  display: flex;
  flex-wrap: row;
  justify-content: left;
}

.right1 {
  right: 6vw;
}
.right2 {
  right: 0vw;
}

.navbutton {
  height: 100%;
  width: 7.5%;

  color: #f2f2f2;

  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;

  border-radius: 9px;

  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6vw;

  margin-right: 12px;

  cursor: pointer;
}

.navbutton p{
  font-family: "Bebas Neue", sans-serif;
  border-radius: 5px;
      width: 80%;

  transition: 0.15s;

}

.navbutton p:hover {
  box-shadow: 0 0 20px 5px #ffffff;
  background: white;
  color: black;
}

.navbutton p.active {
  box-shadow: 0 0 20px 5px #ffffff;
  background: white;
  color: black;
}

.login {
  position: absolute;
  height: 6%;
  width: 7%;

  color: #f2f2f2;

  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;

  border-radius: 9px;

  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7vw;

  margin-right: 14px;

  cursor: pointer;
}

.login p {
    font-family: "Bebas Neue", sans-serif;
    border-radius: 5px;
    width: 80%;
    transition: 0.15s;

}

.login p:hover {
  box-shadow: 0 0 20px 5px #ffffff;
  background: white;
  color: black;
}


.welcome-gif {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;

  top: 0%;
}

.welcome-info {
  position: absolute;
  top: 1vw;
  left: -2vw;
  padding: 15px 30px;
  
  cursor: pointer;

  height: 5.5vw;
  width: 15.5vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-image {
  transition: transform 0.5s ease-in-out;
}

.welcome-image:hover {
    animation: zoomInOut 2s ease-in-out infinite;
}


@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Adjust the zoom level */
    }
    100% {
        transform: scale(1);
    }
}

.welcome-gif-img {
  width: 100%;
  height: 100%;
}

.welcome-table-image {
  position: relative;
  margin: auto;  
  
  width: 44vw;
  height: relative;
  
  animation-duration: 3s;
  animation-name: slide-in-welcome-image;
}

@keyframes slide-in-welcome-image {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

.welcome-table-image-project {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  top: 6vh;
  
  width: 24vw;
  height: 12vw;
}

.scroll-area {
  position: relative;
    top: 100vw;
    width: 200px;
    height: 200px;
    background: teal;
    border-radius: 8px;
    opacity: 0;
    transform: scale(1.2);
}

.pls-scroll {
  position: absolute;
  bottom: 1vh;
    
  font-size: 2vw;
  text-align: center;
  font-family: "Teko", sans-serif;
  
  animation-duration: 1.5s;
  animation-name: scrollfade;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  
  opacity: 1; /* Initial opacity */
  transition: opacity 2.5s ease-out; /* Smooth transition */
}

@keyframes scrollfade {
  from {
    color: rgba(255, 255, 255, 0.35);
  }
  to {
    color: rgba(255, 255, 255, 0);
  }
}

.text-right {
  right: 30px;
}

.square {
    position: relative;
    width: 200px;
    height: 200px;
    background: teal;
    border-radius: 8px;
    opacity: 0;
    transform: scale(1.2);
}

@media (prefers-reduced-motion: no-preference) {
  .square {
    animation-name: wipe-enter;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }
}

.square-transition {
    opacity: 1;
    transform: none;
}

@keyframes wipe-enter {
	0% {
		transform: scale(0, .025);
	}
	50% {
		transform: scale(1, .025);
	}
}

.fade-text {
  transition: opacity 1s ease-out;
}

.IMG-TEST {
  height: 100%;
  width: relative;
}

.Scroll-Content1 {
  position: absolute;
  bottom: -100%;
  left: 0%;
  
  width: 100%;
  height: 100%;
  
  justify-content: center;

}

.Scroll-Content2 {
  position: absolute;
  bottom: -200%;
  left: 0%;
  
  width: 100%;
  height: 100%;
  
justify-content: center;
}

.fade-element {
      opacity: 0;
      transition: opacity 0.5s ease; /* Smooth transition for fading effect */
    }

.Scroll-Content-Text-Title {
  position: relative;
  
  width: 35vw;
  height: 12vh;
    
  margin-left: auto;
  margin-right: auto;
  
  justify-content: center;
  display: flex;
}

.Title-Img {
    position: absolute;
    width: 85%;
  
    top: -6vh;
}

.scroll-section-anchor {
  position: relative;
  
  width: 100%;
  height: 70%;
  
  display: flex;
  flex-direction: row;
  

}

.scroll-section {
  position: relative;
  width: 22%;
  height: 86%;
  
  margin-top: 2%;
  margin: 2.5%;
  
  border-radius: 10px;
  
  display: flex;
  flex-wrap: row;
}

.scrollnavbutton {
  height: 100%;
  width: 100%;
  
  margin-left: auto;
  margin-right: auto; 

  color: #f2f2f2;

  position: relative;
  bottom: -6.5vh;
    
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;

  border-radius: 9px;

  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7vw;

  cursor: pointer;
}

.scrollnavbutton P {
  font-family: "Bebas Neue", sans-serif;
  border-radius: 5px;
  
  width: 80%;

  transition: 0.15s;
}

.scrollnavbutton p:hover {
  box-shadow: 0 0 20px 5px #ffffff;
  background: white;
  color: black;
}

.S-PRO {
  background-image: url("/images/BG.jpg");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
