html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
address,
code,
del,
em,
img,
ins,
strike,
strong,
sub,
sup,
var,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
canvas,
footer,
header,
menu,
nav,
section,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body header {
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  background-color: rgb(50, 50, 62);
  position: sticky;
  top: 0;
}
body header #profileName {
  font-size: 250%;
  color: white;
  padding-right: 1.5rem;
}
body header #backArrow {
  position: fixed;
  left: 3rem;
  filter: invert(1);
  height: 5%;
}
body header #logOut {
  position: fixed;
  right: 3rem;
  font-size: 150%;
  color: white;
}
body header #search {
  filter: invert(1);
  height: 2.5rem;
  padding-left: 1.5rem;
  padding-right: 0.75rem;
}
body header #searchInput {
  height: 0rem;
  display: none;
  width: 0rem;
}

body article {
  background-color: lavender;
  height: 100%;
  display: flex;
  flex-direction: row;
}
body article nav {
  position: sticky;
  left: 0rem;
  top: 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 20rem;
  z-index: 5;
  background-color: rgb(62, 62, 82);
}
body article nav #profilePicture {
  padding-top: 1rem;
  border-radius: 100%;
  width: 15vw;
  height: auto;
}
body article nav .navNavigationCont {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  text-align: center;
}
body article nav .navNavigationCont .navNavigation {
  color: white;
  font-size: 250%;
  text-align: center;
  background-color: rgb(62, 62, 82);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 30px;
}
body article nav .navNavigationCont .active {
  background-color: rgb(50, 50, 62);
}
body article .content {
  width: 100%;
}
body article .content .section {
  display: none;
  align-content: space-around;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  height: 100%;
}
body article .content .section p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 7rem;
  padding-right: 7rem;
  text-align: center;
  font-size: 150%;
}
body article .content .section p #title {
  font-size: 250%;
  font-weight: bold;
  border-radius: 50px;
  padding: 1rem;
  color: lavender;
}
body article .content .activeSect {
  display: flex;
  flex-direction: column;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
}/*# sourceMappingURL=main.css.map */