* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

header {
  overflow: auto;
}

nav {
  background: hsl(0, 0%, 10%);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  margin-right: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: space-between;
  color: #FFF;
  align-items: center;
  width: min(1800px, calc(100% - 50px));
  margin-inline: auto;
  padding: 10px;
}

.navbar a {
  color: inherit;
  text-decoration: none;
}

.navbar ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  list-style: none;
}

.navbar ul li a {
  display: block;
  padding: 10px 14px;
  position: relative;
  color: #FFF;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
  background-color: hsl(191, 100%, 50%);
}

.navbar ul.show {
  display: flex;
  flex-direction: column;
}

.navbar li {
  text-align: center;
  margin-top: 10px;
}

.navbar-toggler {
  display: none;
}

.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: url('/assets/background.png') center / cover no-repeat;
  height: 100vh;
  background-color: #101010;
  color: #FFF;
  position: relative;
}

.description {
  text-align: center;
  max-width: 600px;
  margin-top: 30px;
  line-height: 1.6;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: hsl(0, 0%, 10%);
  color: #fff;
}

.footer-button {
  display: inline-block;
  background-color: cyan;
  color: #101010;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.footer-button:hover {
  background-color: #00BFFF;
}

.feature-text {
  position: absolute;
  top: 30%; 
  left: 50%;
  transform: translateX(-50%); 
  font-size: 64px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFF;
  opacity: 0;
  animation: fade-in-animation 2s forwards;
}

.fade-in {
  opacity: 0;
  animation: fade-in-animation 2s forwards;
}

.comingsoon-text {
  position: absolute;
  margin-top: -100px;
  transform: translate(-50%, -50%);
  font-size: 36;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #FFF;
  opacity: 0;
  animation: fade-in-animation 2s forwards;
}

@media only screen and (max-width: 768px) {
  .navbar ul {
      display: none;
  }

  .navbar ul.show {
      display: flex;
      flex-direction: column;
  }

  .navbar li {
      text-align: center;
      margin-top: 10px;
  }

  .navbar-toggler {
      display: block;
      background-color: hsl(189, 48%, 56%);
      color: #fff;
      border: none;
      padding: 10px;
      cursor: pointer;
  }

  .navbar-toggler span {
      display: block;
      width: 25px;
      height: 3px;
      margin-bottom: 5px;
      background-color: #fff;
  }

  .navbar-toggler span:last-child {
      margin-bottom: 0;
  }
}

@keyframes fade-in-animation {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}