

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  background: linear-gradient(45deg, #FFC107, #f44336, #2196F3, #4CAF50, #9C27B0, #FF9800, #00BCD4);
  background-size: 400% 400%;
  animation: GradientBackground 10s ease infinite;
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


h2 {
  color: white;
}


h2, h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: 50px;
}

p {
  margin: 0 0 20px;
}

h1, p {
  color: #fff;
}

p {
  height: 100px;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #555;
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transition: font-size 0.5s ease-in-out;
}

header h1 small {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}

header nav {
  display: flex;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header li {
  margin: 0 10px;
}

header a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px 20px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
}

header a:hover {
  background-color: #fff;
  color: #333;
}

#experience {
  background-color: white;
  padding: 100px 0;
  text-align: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

#experience.show {
  opacity: 1;
}

.cta-button {
  padding: 12px 24px;
  border: 2px solid #fff;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  outline: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #fff;
  color: #333;
}

.cta-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover .cta-arrow {
  transform: translateX(5px);
}


.container h1,
.container p,
.cta-button {
  color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.cta-button {
  position: relative;
  top: 4%;
  transform: translateY(-50%);
}

.button-group {
  display: flex;
  justify-content: center;
}

.cta-button {
  margin: 0 10px;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00fbff;
  z-index: 10000;
  transition: transform 1s ease-in-out;
}

.preloader-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbulb,
.magnifying-glass {
  width: 80px;
  height: auto;
  animation: preloaderRotate 2s linear infinite;
}

.magnifying-glass {
  margin-left: 20px;
  animation-delay: 0.5s;
}

@keyframes preloaderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 8px;
  box-sizing: border-box;
  border: 32px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-hourglass 1.2s infinite;
}
@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(1800deg);
  }
}
