

* {
  margin: 0px;
  padding: 0px;
}
body {
  background-color: whitesmoke;
}
body h2 {
  display: flex;
  justify-content: center;
  background: #cb416b;
  height: 50px;
  align-items: center;
  gap: 20px;
}

h2 span{
  display: flex;
}

.container {
  display: block;
  margin: auto;
  width: 86%;
}

.toolbar {
  display: flex;
  margin-bottom: 70px;
  margin-top: 45px;
  gap: 25px;
  align-items: flex-end;
  flex-wrap: wrap;
}

#font-family {
  width: 210px;
  height: 38px;
  border: 2px solid black;
  font-size: 15px;
  font-family: sans-serif;
}

#font-case {
  width: 210px;
  height: 38px;
  border: 2px solid black;
  font-family: sans-serif;
  font-size: 15px;
}

.color-picker {
  display: block;
}
.color-picker input {
  width: 10rem;
  border-radius: 1rem;
}

.styled-content{
  margin: 0px 0px 0px 2px;
}
.document-textarea {
  position: relative;
  top: 85px;
}

#main-textarea {
  border: 2px solid black;
  padding: 7px;
  resize: none;
  width: 84vw;
  font-size: 17px;
  height: 300px;
}

.text-font-color:hover {
  box-shadow: 0px 0px 5px 0px;
}

.font-increase-decrease:hover,
.justify:hover {
  box-shadow: 0px 0px 5px 0px gray;
}

.font-strech:hover {
  background-color: #b52e57;
  box-shadow: 0px 0px 4px 0px gray;
}

.bold{
  font-weight: bold;
}

.italic{
  font-style: italic;
}

.underline{
  text-decoration: underline;
}