* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fbce87;

  background-size: cover;
  color: black;
}
header {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 60px;
  margin-right: 10px;
}

.logo-text {
  font-weight: bold;
  color: black;
  font-size: 18px;
}



.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
nav a.active {
  color: black;
}
.search-box input {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #000;
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
}

.main-content h1 {
  font-size: 80px;
  font-weight: 900;
  color: white;

