html {
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  text-align: center;
  color: #f5f5f5;
}

a {
  text-decoration: none;
}

.heroContainer {
  height: 100vh;
  width: 100vw;
}

.container {
  width: 100vw;
  align-items: center;
}

header {
  background-color: #333;
}

/* Style for the burger icon */
.burger-icon {
  display: none;
  cursor: pointer;
}

/* Styling for the individual bars in the burger icon */
.burger-icon .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

/* Show the menu when the 'active' class is present */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 1;
  padding: 1rem;
}

/* Add a media query to hide the menu and show the burger icon on screens less than 414px wide */
@media (max-width: 414px) {
  .nav-menu {
    display: none;
    justify-content: flex-start;
  }

  .burger-icon {
    display: block;
    width: 30px;
    height: 30px;
  }

  /* Style the "burger menu" icon */
  .burger-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: background-color 0.3s ease;
  }

  .burger-icon.active .bar {
    background-color: #fff;
  }

  .navbar ul {
    display: none;
    /* Hide the menu items */
    flex-direction: column;
    /* Stack menu items vertically */
  }

  .navbar li {
    margin: 10px 0;
    /* Adjust spacing between menu items */
  }
}
.navbar {
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  background-color: #333;
}

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

.navbar li {
  margin: 0 10px;
  font-size: larger;
}

.navbar a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #e74c3c;
}

.auth-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 20px;
}

.auth-buttons button {
  margin-left: 10px;
  padding: 12px 20px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.auth-buttons button:hover {
  background-color: #c0392b;
}

.container {
  display: flex;
  flex-direction: column;
}

.hero {
  background: url("https://st2.depositphotos.com/26272052/43107/v/600/depositphotos_431078780-stock-video-green-line-broken-robot-icon.jpg") no-repeat center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.75);
  background-blend-mode: multiply;
  height: 100%;
  width: 100vw;
}

.inner-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
}

.p1 {
  display: inline-block;
  font-size: 1em;
  font-weight: 900;
  marign: 0;
  line-height: 1;
}

#changingText {
  display: inline-block;
  font-size: 1em;
  font-weight: 100;
  marign: 0;
  line-height: 1;
  color: #e74c3c;
}

.changing-text {
  transition: opacity 0.5s ease-in-out;
}

.hero-down {
  position: absolute;
  bottom: 0;
  font-size: 2em;
  width: 2em;
  height: 2em;
  color: #f5f5f5;
  border-radius: 100%;
}
.hero-down:hover, .hero-down:focus {
  color: #ccc;
}
.hero-down:active {
  color: #f5f5f5;
}
.hero-down .btn-react {
  background-color: #f5f5f5;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  opacity: 0;
  position: absolute;
}
.hero-down i {
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

.section {
  width: 100vw;
  text-align: center;
  padding: 100px;
  background-color: black;
}

.section h2 {
  font-size: 24px;
  background: #e74c3c;
  padding: 10px;
}

.section.odd {
  color: white;
  background-color: black;
}
.section.odd a {
  color: white;
}

.section.even {
  color: black;
  background-color: white;
}
.section.even a {
  color: black;
}

.section .content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}

.section .content .text {
  width: 45%;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
  .section .content {
    flex-direction: column;
    padding: 10px;
  }

  .section .content .text {
    width: 100%;
  }

  .section .content .gif {
    width: 100%;
    order: 0;
  }
}
.text-container {
  position: relative;
  width: 500px;
  left: 250px;
  visibility: hidden;
}

.text-container.animate #automation-text,
.text-container.animate #in-text {
  visibility: visible;
  animation: fadeIn 1.5s ease-in-out;
  font-size: xx-large;
  font-weight: bold;
}

.text-container.animate #section-title {
  color: #e74c3c;
  visibility: visible;
  animation: fadeIn 1.5s ease-in-out;
  font-size: xx-large;
  font-weight: bold;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer {
  width: 100%;
  background-color: #333;
  padding: 20px;
  text-align: center;
  color: white;
  position: relative;
}

#click-animation {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #e74c3c;
  border-radius: 50%;
  pointer-events: none;
  animation: clickAnimation 0.3s ease;
  opacity: 0;
  /* Initial opacity of 0 */
  transform-origin: center;
}

@keyframes clickAnimation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(4);
    opacity: 1;
    z-index: 10;
  }
}
::selection {
  background-color: #e74c3c;
  color: white;
}