body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* header css starts */
header {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.htitle {
  line-height: 0.8;
  font-weight: 700;
  font-size: 128px;
}

.nav-links {
  display: flex;
  align-self: flex-start;
  gap: 15px;
}

.nav-item {
  font-size: 16px;
}

.nav-item.selected {
  font-weight: 700;
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  header {
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }

  .htitle {
    font-size: 64px;
  }
}
/* header css ends */

/* contact css starts */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  color: #777777;
  font-size: 16px;
  line-height: 150%;
}

.responsive {
  margin-bottom: 25vh;
}

.text-content {
  max-width: 80vw;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.description {
  font-family: "Jost", sans-serif;
}

.section-title {
  font-weight: 600;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a:hover {
  color: black;
}

@media (max-width: 992px) {
  .text-content {
    max-width: 90vw;
  }
}

.calendarButton {
  display: flex;
  justify-content: center;
}
button {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  background-color: black;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
/* contact css ends */
