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

body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.container {
  max-width: 75vw;
  margin: 0 auto;
}

.editing__body {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.editing__text {
  position: relative;
  border: 2px solid gray;
  padding: 5px;
  text-align: center;
  max-width: 100%;
  padding-bottom: 10px;
}
.editing__size-btn {
  width: 15px;
  height: 15px;
  position: absolute;
  background-color: gray;
  border: 1px solid black;
  bottom: -2px;
  right: -2px;
  cursor: pointer;
}
.editing__itput {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 22px;
  font-weight: 600;
  border: 2px solid gray;
  padding: 5px;
  text-align: center;
  resize: vertical;
  overflow: auto;
}
.editing__itput:focus {
  outline: none;
  border: 3px solid gray;
}/*# sourceMappingURL=index.css.map */