@import url(sidebar.css);
@import url(header.css);
@import url(content.css);

* {
  margin: 0;
  font-family: 'Josefin Sans', sans-serif;
  user-select: none;
}

body,
#container {
  background-color: white;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  overflow-y: scroll;
}

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