* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(192, 85, 192);
  transition: all 0.4s;
}

.container {
  width: 34%;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.3);
}

.container .colorShow {
  width: 100%;
  height: 200px;
  background-image: linear-gradient(
    to left top,
    rgb(93, 93, 212),
    rgb(94, 204, 94)
  );
  border-radius: inherit;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heading {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

select {
  width: 150px;
  height: 40px;
  padding: 5px;
  font-size: 16px;
}

option {
  font-size: 16px;
}

.colorsOpt {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.colorsOpt input {
  width: 70px;
  height: 40px;
  cursor: pointer;
}

.text {
  width: 100%;
  height: 70px;
  background-color: rgb(226, 226, 205);
  border-radius: inherit;
  margin: 20px 0;
  padding: 10px;
  color: #464545;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  transition: all 0.2s;
}

.buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

button {
  width: 46%;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

button:nth-child(1) {
  background-color: grey;
}

button:nth-child(2) {
  background-color: rgb(192, 85, 192);
}

@media (max-width: 450px) {
  .container {
    width: 90%;
  }
}
