 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
.align button{
   padding: 5px 9px; 
}
img{
    width: 20px;
}
body {
  background: linear-gradient(135deg, #9a6d9a, #9e349e);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 90%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}
button {
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #df71be;
  color: #a59797;
  transform: scale(1.05);
}
input, select {
  padding: 6px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
#para {
  min-height: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  overflow-x: scroll;
}
#bg{
  width: 40px;
  height: 25px;
  border: none;
  background: none;
  margin-top: 15px;
}
#paint{
  margin-bottom: 20px;
  margin-right: -40px;
}