body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  background-color: #F9FAFB;
  color:  #111827;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  border-bottom: 1.50px solid  #111827;
  background-color: #F9FAFB;
  color:  #111827;
  text-decoration: none;
}

.logo img {
  height: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
  margin-left: 20 px;
}

.login-btn {
  font-family: "Source Code Pro", sans-serif;
  padding: 6px 14px;
  background-color: #eda398;
  border: 1.5px solid #282828;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-btn:hover {
  background-color: #193497;
  color: #f9f6ef;
}

.user-icon img {
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #282828;
}

.hero {
  margin-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subheading {
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0;
}

.main-heading {
  font-size: 5.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.cta {
  font-family:"Raleway", sans-serif;
  margin-top: 30px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 16px;
  background-color: #4F46E5;
  color: #ffffff;
  border-radius: 24px;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.arrow {
  margin-left: 5px;
}
