@import url("https://fonts.googleapis.com/css?family=Muli");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Muli", sans-serif;
  background-color: #3b3b98;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  cursor: default;
}
body section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #23235b;
  box-shadow: 0px 2px 10px rgba(255, 255, 255, 0.2);
  padding: 20px;
  width: 350px;
  max-width: 100%;
  color: #fff;
}
body section h1 {
  font-size: 2rem;
  text-align: center;
  margin: 10px 0 20px 0;
}
body section .psdBox {
  background-color: #151537;
  width: 100%;
  height: 46px;
  margin: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}
body section .psdBox #psd {
  padding: 0.5rem;
  font-size: 1.5rem;
}
body section .psdBox #copy {
  width: 36px;
  padding: 0.5rem;
  background-color: #3b3b98;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  position: absolute;
  right: 0.5rem;
}
body section .chooseBox {
  width: 100%;
}
body section .chooseBox .setting {
  margin: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body section .chooseBox .setting label {
  font-size: 1.1rem;
}
body section .chooseBox .setting input[type=number] {
  width: 40px;
}
body section .chooseBox .setting input[type=number]:focus {
  outline: none;
}
body section #createPsd {
  background-color: #3b3b98;
  color: #fff;
  border: none;
  padding: 0.5rem;
  width: 100%;
  font-size: 1.2rem;
  cursor: pointer;
}
body section #createPsd:hover {
  opacity: 0.9;
}
body section #createPsd:active {
  opacity: 0.9;
  transform: scale(0.95);
}/*# sourceMappingURL=pasd.css.map */