.content-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

/* Notes container */
.notes-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Buttons styling */
.btns-container {
  display: flex;
  justify-content: flex-start;
  width: 90vw;
  max-width: 680px;
  margin-bottom: 0;
  box-sizing: border-box;
}

.btns {
  background: #fff;
  border-width: 0;
  width: 10vw;
  min-width: 110px;
  height: 7.5vh;
  margin-right: 1vw;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 3vh;
  font-weight: 550;
  font-family: "Miriam Mono CLM";
  color: #000000;
  text-decoration: none;
  text-align: center;
  padding-top: 1.5vh;
}

.btns:hover {
  cursor: pointer;
  border: 3px solid #eaddca;
}

.login-btn {
  background: #eaddca;
}

.login-btn:hover {
  border: 3px solid #fff;
}

/* Notes styling */
.notes {
  font-family: "Miriam Mono CLM";
  color: #000000;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  background: #fff;
  width: 90vw;
  max-width: 680px;
  box-sizing: border-box;
  padding: 0;
}

.notes ul {
  list-style: none;
  line-height: 0;
  padding: 0;
  border-top: 3px solid #8754e6;
}

.notes li {
  font-size: 2vh;
  font-weight: 600;
  border-bottom: 1px solid #8469b3;
  padding: 3vh 4vw 1vh;
  text-align: left;
}

.note1 {
  background: #fff;
  width: 90vw;
}
