html {
  font-size: 16px;
  font-family: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

#root,
#__next {
  isolation: isolate;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  outline: none;
}

.text-center {
  text-align: center;
}

nav {
  min-height: 3rem;
  justify-content: center;
  position: sticky;
  top: 0;
  background-color: #eeeeee;
  color: #1e293b;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  font-family: "Inter", sans-serif;
  display: flex;
}
nav .active {
  font-weight: bold;
}
nav .container {
  padding: 0 2rem 0 2rem;
  max-width: 100ch;
  flex-direction: row;
  width: 100%;
  min-height: 100%;
  align-items: center;
  display: none;
}
@media (min-width: 640px) {
  nav .container {
    display: flex;
  }
}
nav .mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  nav .mobile {
    display: none;
  }
}
nav .mobile .menu-button {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
nav .mobile .nav-wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  width: 100%;
  align-items: center;
}
nav .mobile ul {
  padding: 1rem 2rem 1rem 2rem;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100vh;
  row-gap: 1rem;
  background-color: #eeeeee;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
nav .mobile ul li,
nav .mobile ul a {
  display: flex;
  width: 100%;
}
nav .mobile h1 {
  font-family: "Noto Serif", serif;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 10rem;
  width: 100%;
}
nav li:hover {
  text-decoration: underline;
}

header {
  min-height: 30ch;
  max-height: 30ch;
  background-color: gray;
  place-items: center;
  display: none;
  position: relative;
}
header .title {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 2rem;
  font-size: 1.75rem;
  font-family: "Noto Serif", serif;
  z-index: 10;
}
header .banner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: 0% 6%;
  object-fit: cover;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../assets/images/banner.jpg");
}
header .banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(#000000, #000000);
  opacity: 0.6;
}
@media (min-width: 640px) {
  header {
    display: grid;
  }
}

section {
  display: flex;
  padding: 6rem 1rem;
  justify-content: center;
  font-family: "Inter", sans-serif;
  list-style-position: inside;
}
@media (min-width: 640px) {
  section {
    padding: 6rem 2rem;
  }
}
section.a {
  background-color: #ffffff;
  color: #4c4f69;
}
section.a h1 {
  color: Black;
}
section.b {
  background-color: #f8fafc;
  color: #4c4f69;
}
section.b h1 {
  color: Black;
}
section h1 {
  font-family: "Noto Serif", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
section ol {
  list-style: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
section ul {
  list-style: disc;
  list-style-position: inside;
  flex-direction: column;
  display: flex;
  row-gap: 0.5rem;
}

.grid-container {
  max-width: 100%;
}
.grid-container.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-container.split > * {
  grid-column: span 1;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #334155;
  color: #cbd5e1;
  min-height: 2.5rem;
  font-size: 0.75rem;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 80ch;
  width: 100%;
}
.container.center {
  text-align: center;
}
.container.center li {
  text-align: center;
}

.grid-container {
  max-width: 100%;
}
.grid-container.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-container.split > * {
  grid-column: span 1;
}

.profile-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 640px) {
  .profile-card {
    flex-direction: row-reverse;
  }
}
.profile-card h2 {
  font-size: 1.125rem;
  font-family: "Noto Serif", serif;
  margin-bottom: 1rem;
}
.profile-card img {
  width: 100%;
  width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  padding: 0 0 2rem 0;
}
@media (min-width: 640px) {
  .profile-card img {
    width: 200px;
    padding: 0;
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  display: grid;
  align-items: center;
  max-width: 100%;
  justify-content: center;
}
.profile-grid > * {
  grid-column: span 1;
}
@media (min-width: 60ch) {
  .profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-grid > * {
    grid-column: span 1;
  }
}

.padding-1 {
  padding: 0.25rem;
}

.margin-1 {
  margin: 0.25rem;
}

.gap-x-1 {
  column-gap: 0.25rem;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.padding-2 {
  padding: 0.5rem;
}

.margin-2 {
  margin: 0.5rem;
}

.gap-x-2 {
  column-gap: 0.5rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.padding-3 {
  padding: 0.75rem;
}

.margin-3 {
  margin: 0.75rem;
}

.gap-x-3 {
  column-gap: 0.75rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.padding-4 {
  padding: 1rem;
}

.margin-4 {
  margin: 1rem;
}

.gap-x-4 {
  column-gap: 1rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.padding-5 {
  padding: 1.5rem;
}

.margin-5 {
  margin: 1.5rem;
}

.gap-x-5 {
  column-gap: 1.5rem;
}

.gap-y-5 {
  row-gap: 1.5rem;
}

.padding-6 {
  padding: 2rem;
}

.margin-6 {
  margin: 2rem;
}

.gap-x-6 {
  column-gap: 2rem;
}

.gap-y-6 {
  row-gap: 2rem;
}

.padding-7 {
  padding: 2.5rem;
}

.margin-7 {
  margin: 2.5rem;
}

.gap-x-7 {
  column-gap: 2.5rem;
}

.gap-y-7 {
  row-gap: 2.5rem;
}

.padding-8 {
  padding: 3rem;
}

.margin-8 {
  margin: 3rem;
}

.gap-x-8 {
  column-gap: 3rem;
}

.gap-y-8 {
  row-gap: 3rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.inside-aligned {
  counter-reset: li;
}

.inside-aligned li {
  counter-increment: li;
}

@supports (grid-template-columns: subgrid) {
  .inside-aligned {
    display: grid;
    grid-template-columns: min-content 1fr;
  }
  .inside-aligned li {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: subgrid;
  }
}
.inside-aligned li::before {
  content: counter(li) ".";
  margin-right: 0.2rem;
}

.inside-aligned-right li::before {
  text-align: end;
}

/*# sourceMappingURL=style.css.map */
