@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}

nav {
  background-color: black;
  color: rgba(245, 158, 11);
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}

h1:hover {
  color: #f2f2f2;
  transition: 0.2s;
}

nav button {
  background-color: rgba(245, 158, 11);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 100;
  padding: 10px;
  margin: 0 10px;
}
nav .remove{
  display: none;
}

nav button:hover {
  background-color: #f2f2f2;
  color: rgba(245, 158, 11);
  transition: 0.2s;
}

.container {
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
  gap: 20px;
}

.note-container {
  background-color: #5b21b6;
  width: 235px;
  height: 226px;
  border-radius: 6px;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
  color: #fff;
}
.note {
  margin: 48px 5px 0px 5px;
  height: 169px;
  width: 224px;
  border: none;
  font-size: 16px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
  resize: none;
  border-radius: 8px;
}


@media (max-width: 600px) {
  .note-container {
    width: 100%;
  }
  h1 {
    font-size: 4vw;
  }
  nav button {
    font-size: 2vw;
  }
  .note {
    width: 97.2%;
  }
}
