:root {
  font-size: 110%;
  letter-spacing: 0.2rem;
  font-family: "Halant";
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #ffffff;
}

* {
  outline: none;
  padding: 0;
  margin: 0;
}

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

#header {
  display: flex;
  justify-content: center;
  width: 70vw;
  border: none;
  margin: 5vh 0;
}

#header__title {
  font-weight: bold;
  font-size: 2rem;
}
#main {
  border: solid 1px green;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.main__noteblock {
  width: 15rem;
  height: 4.5rem;
  border-radius: 10px;
  background-color: #272727;
  position: relative;
}

.main__noteblock__heading {
  font-size: 2rem;
}

.main__noteblock__text {
  font-family: "Nunito Sans";
  color: rgba(1000, 1000, 1000, 1);
}

#add-button-conteiner {
  display: flex;
  justify-content: center;
  margin: 5vh 0;
}

#add-button,
#save-button {
  background: rgba(0, 0, 0, 0);
  border: none;
}
