* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
/*

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

*/



body {
  background-color: yellow;
  max-width: 1250px;
  margin: 50px auto;
}

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

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.top h1 {
  display: flex;
  align-items: center;
  font-size: 35px;
  line-height: 35px;
}

.top h1 img {
  width: 35px;
  margin-left: 10px;
}

.createBtn {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 30px;
  letter-spacing: 2px;
  color: white;
  background-color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.createBtn:active {
  transform: scale(0.95);
}

.notesContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  position: relative;
  width: 300px;
  height: 150px;
  display: inline;
  border: 3px dotted black;
  border-radius: 10px;
}

.note p {
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: transparent;
  outline: none;
}

.note img {
  width: 20px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
}

body {
  background-color: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.dark-mode {
  background-color: #1e1e1e;
  color: #f5f5f5;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
