html,
body {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Tahoma, Geneva,
    Arial, sans-serif;
}
ul,
ol {
  margin: 0;
  padding: 0;
}

a,
a:active {
  color: #2c5a74;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.loginlink {
  display: flex;
  color: #333;
  font-size: 0.75rem;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #060d19;
  background: #fff;
}

:focus-visible {
  outline: 2px dotted #00a3ff;
}

.main-container {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 3rem 1fr 2rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.appTitle {
  color: #4285f4;
  font-size: 1.5rem;
}
.appLogo {
  height: 2rem;
}

.header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(204 204 204 / 54%);
  padding: 0 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.content {
  overflow: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content ul {
  border-left: 3px solid #ccc;
  margin-inline-start: 0.5rem;
  padding-inline-start: 2rem;
}

.content li {
  padding: 0.25rem 0.5rem 0.25rem 0;
}
.content h4.heading {
  margin-block: 1.5rem 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.content h3 {
  font-weight: 600;
  font-size: 1.25rem;
}
.para {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgb(204 204 204 / 54%);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
