@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

:root {
  --bg-color: rgb(22, 22, 22);
  --main-color: rgb(117, 255, 230);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;

  background-color: var(--bg-color);
  color: var(--main-color);
  font-family: 'Inter', sans-serif;
}

#greetings {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  user-select: none;
}

#greetings > #clock {
  font-size: 6rem;
}

#greetings > #hello {
  font-size: 2rem;
}

main {
  display: flex;
  height: 100%;
}

main > nav {
  padding: 2rem;
  border-right: 1px solid var(--main-color);
}

main > nav > a {
  text-decoration: none;
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: bold;
}

main > nav > ul {
  list-style: none;
}

main > nav > ul > li {
  color: white;
}

main > nav > p {
  color: white;
}

main > nav > p > a {
  color: white;
  text-decoration: none;
}

main > #note {
  padding: 1rem;
  margin: 1.5rem auto;
  width: 50rem;
}

main > #note > #title {
  width: 100%;
  border: none;

  background-color: transparent;
  color: var(--main-color);
  font-size: 1.5rem;
  font-weight: normal;
}

main > #note > #title:focus {
  outline: none;
}

main > #note > #text {
  width: 100%;
  height: 30rem;
  resize: none;

  border: none;
  background-color: transparent;
  color: var(--main-color);
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
}

main > #note > #text:focus {
  outline: none;
}

.separator {
  width: 100%;
  border-top: 1px solid var(--main-color);
  margin: 2rem 0;
}
