body {
  margin: 0;
  font-family: Arial, sans-serif;
  max-width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  color: black;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  text-align: left;
  color: black;
}

.logo a:hover {
  color: black;
  text-decoration: none;
}
.logo a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 24px;
}

.logo:hover {
  color: black;
  text-decoration: none;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
}

.nav-links a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.download-btn {
  background-color: #f4a3a3;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.download-btn:hover {
  background-color: olivedrab;
}

.hero {
  background-image: url("Rectangle-2.png");
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero-text {
  position: relative;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 60px;
  font-weight: bold;
  padding-left: 30px;
  font-weight: bolder;
  text-shadow: 2px 2px 4px rgb(255, 255, 254);
}

.search-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px;
  object-fit: cover;
  background-image: url("tmblr-bg.jpg");
  opacity: 0.8;
}

.search-bar {
  width: 700px;
  height: 70px;
  font-size: 24px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: lightgray;
  color: black;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

sidebar {
  position: absolute;
  right: 10px;
  top: 50px;
  width: 200px;
  background-color: rgba(70, 33, 33, 0.2);
  padding: 15px;
  transition: 0.5s ease-in-out;
}

.sidebar:hover {
  opacity: 1;
}

.video {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 0;
    padding: 8px 0;
  }

  .download-btn {
    width: 100%;
    margin-top: 10px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-text {
    font-size: 36px;
    padding-left: 0;
    text-align: center;
  }

  .search-bar-container {
    height: auto;
    padding: 60px 20px;
    flex-direction: column;
    background-size: cover;
  }

  .search-bar {
    width: 90%;
    height: 50px;
    font-size: 18px;
  }

  .sidebar {
    position: static;
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
}
