/*  class Editor에  
1) display 속성 flex 
2) gap 10px 
*/
.Editor {
  display: flex;
  gap: 10px;
}

/* class Editor의 하위 input요소 
  1)flex : 1  적용하여 부모요소에 벗어나지 않는 범위내에서 최대 크기로 나오게한다.  
2)padding 15px 적용 
3)외곽 테두리 1px solid rgb(220,220,220); 적용 
4)테두리를 둥글게 5px 적용 
 */
.Editor input {
  flex: 1;
  padding: 15px;
  border: 1px solid rgb(220, 220, 220);
  border-radius: 5px;
}

/* class Editor의 하위 button요소  
1)cusor 을 pointer로 설정 
2)가로크기 80px 
3)외곽테투리 none설정 
4)글자색상 white 
5)바탕색은 rgb(37,147,255) 
6)테두리를 둥글게 5px 적용 
*/
.Editor button {
  cursor: pointer;
  width: 80px;
  border: none;
  color: white;
  background-color: rgb(37, 147, 255);
  border-radius: 5px;
}
