@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  position: relative;
}
.navBar {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px;
}
.navBar a {
  text-decoration: none;
  background-color: transparent;
}
.navBar li {
  font-size: 18px;
  padding: 10px 15px;

  border-radius: 20px;
  font-weight: 400;

  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.33);
  font-weight: 500;
  text-wrap: nowrap;
  padding-bottom: 8px;
}

.heading {
  font-size: 32px;
  text-wrap: nowrap;
}
header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Sans", system-ui;
  z-index: 1;
}
.appHead {
  display: flex;
  padding: 10px 0px 5px 20px;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
main {
  padding: 60px 0px 20px 20px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
}
.about {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
  padding: 36px 28px 28px 36px;
  gap: 12px;

  border-radius: 32px;
}
.aboutDetails {
  margin-left: 28px;
}
.appName a {
  text-decoration: none;
}
.navBar .contactUs {
  background-color: transparent;
}

.logo {
  font-size: 40px;
}
.main-img {
  padding: 16px 150px 0px 0px;
}
.learnMoreContainer {
  display: inline-block;
}
.getStarted {
  padding: 8px 24px;
  border-radius: 20px;

  font-weight: 500;
  font-size: 16px;
  text-wrap: nowrap;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.363);
}
:is(.signUp, .login, .getStarted):hover {
  cursor: pointer;
}
.contactUs:hover {
  cursor: pointer;
}
.infoSection {
  margin-bottom: 25vh;
}
footer {
  height: 50vh;
  display: flex;
  justify-content: center;
}
.Connect p {
  margin-bottom: 8px;
  font-size: 18px;
}
.Connect a,
.email {
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 4px;
}
.Connect {
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
}
@media screen and (max-width: 1000px) {
  .main-img {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .navBar li {
    font-size: 16px;
  }
  .heading {
    font-size: 26px;
  }
  .contactUs {
    display: none;
  }
  .navBar {
    gap: 4px;
  }
  .appHead {
    gap: 22px;
    padding: 10px 0px 5px 8px;
  }
  main {
    margin-top: 35px;
    padding: 20px 20px 20px 20px;
    font-size: 14px;
    gap: 12px;
  }
  .about {
    padding: 10px;
    max-width: 90%;
    font-size: 14px;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .signUp {
    display: none;
  }
}
.navBar .theme {
  background-color: transparent;
  border: none;
  cursor: pointer;
  box-shadow: none;
}
