* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: white;
}

.options-container {
  height: 5rem;
  width: 5rem;
  background-color: #f1f2f6;
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.tools-container {
  height: 5rem;
  width: 55vw;
  display: flex;
  justify-content: space-around;
  background-color: #f1f2f6;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: absolute;
  top: 2rem;
  left: 25vw;
}

.tools-container > * {
  display: block;
  width: 4rem;
  height: 4rem;
  align-self: center;
}

.scale-tools {
  animation-name: scale-tools;
  animation-duration: 1s;
}

@keyframes scale-tools {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}

.pencil-tool {
  background-color: #f1f2f6;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: 7rem;
  height: 5.5rem;
  position: absolute;
  top: 7rem;
  left: 25vw;
  border-radius: 3px;
  display: none;
}

.pencil-width-container {
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pencil-width-container input {
  width: 80%;
}
.pencil-color-container {
  height: calc(100% - 1.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.pencil-color {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.black {
  background-color: black;
}

.red {
  background-color: red;
}

.blue {
  background-color: blue;
}

.eraser-tool {
  background-color: #f1f2f6;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 2rem;
  width: 7rem;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 7rem;
  left: 33vw;
  border-radius: 3px;
}

.eraser-tool input {
  width: 80%;
}

.sticky-notes-container {
  width: 15rem;
  height: 15rem;
  position: absolute;
  top: 15rem;
  left: 10rem;
}

.header-container {
  height: 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #f1f2f6;
}

.header-container > * {
  height: 1.3rem;
  width: 1.3rem;
  margin-right: 0.5rem;
  border-radius: 50%;
}
.minimize {
  background-color: #2ed573;
}

.remove {
  background-color: #ff4757;
}

.note-container {
  height: calc(100% - 2rem);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

textarea {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  resize: none;
}

img {
  height: 100%;
  width: 100%;
}
