body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

#header {
  width: 100%;
  height: 15vh;
  background-image: url("../assets/img/bizwareHeaderBanner.png");
  background-size: 100% 100%;
  border: 0;
  border-radius: 0px;
}

#viewport {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#bizwareLogo {
  height: 4vh;
  position: absolute;
  top: 5vh;
  left: 3.6vw;
  cursor: pointer;
}

#navBar {
  width: 100%;
  height: 7vh;
  background-color: rgb(125,171,223);
  position: relative;
  border: 0;
  border-radius: 0px;
}

#navButtonsHolder {
  display: inline-flex;
  background-color: inherit;
  position: absolute;
  left: 3.5vw;
  top: 50%;
  transform: translate(0, -50%);
}

.navButtons {
  display: block;
  font-size: 1em;
  text-decoration: none;
  font-size: 1.3em;
  color: white;
  cursor: pointer;
  margin-right: 5vw;
}

#accountButtonsHolder {
  display: inline-flex;
  background-color: inherit;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translate(0, -50%);
}

.accountButtons {
  margin-left: 20px;
  margin-top: calc((3.5em - 1.45rem) / 4);
  color: #0056b3;
}

#tryForFree {
  margin-top: calc((3.5em - 1.45rem) / 4);
  height: 1rem;
  background-color: #ffffff;
  color: #0056b3;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

#tryForFree:hover {
  background-color: #f0f0f0;
  color: #003e80;
}

button {
  cursor: pointer;
}
  
@media screen and (max-width: 600px) {
  #navBar {
    height: 7.5em;
  }

  #navButtonsHolder {
    display: block;
    left: 5vw;
  }

  .navButtons {
    margin-bottom: 0.5em;
    font-size: 1.2em;
  }
}
