* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #560ffd;
}
.container {
  background-color: #ffffff;
  width: 90vmin;
  padding: 50px 30px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(8, 15, 30, 0.3);
}
.options {
  display: flex;
  align-items: left;
  justify-content: flex-start;
  flex-direction: column;
  gap: 17px;
}
.row{
  display: flex;
  flex-direction: row;
  gap: 15px;
}
button {
  height: 30px;
  width: 30px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  border: none;
  background-color: #ffffff;
  outline: none;
  color: #071349;
  cursor: pointer;
}
select {
  padding: 10px;
  border: 1px solid #071349;
  border-radius: 3px;
}
.input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 45px;
  height: 32px;
  border: none;
  cursor: pointer;
}
input[type="color"]::-webkit-color-swatch {
  border-radius: 15px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #071349;
}
input[type="color"]::-moz-color-swatch {
  border-radius: 14px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #071349;
}
#text-input {
  margin-top: 12px;
  border: 1px solid #d1cccc;
  padding: 20px;
  height: 50vh;
  resize: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.active {
  background-color: #dee4f3;
}
