@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(22, 33, 33);
  color: #fff;
  font-family: "Muli", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  padding: 10px;
  margin: 0;
}

h2 {
  margin: 10px 0 20px;
  text-align: center;
  font-family: poppins;
  font-size: 3rem;
}
@media screen and (max-width: 320px) {
  h2 {
    font-size: 2rem;
  }
}

label {
  font-size: 1.1rem;
}

.container {
  background-color: rgb(51, 7, 87);
  box-shadow: rgb(199, 168, 229) 0 2px 10px 1px;
  border-radius: 20px;
  padding: 40px;
  max-width: 100%;
}

.result-container {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 12px 10px;
  height: 50px;
  width: 100%;
}

.result-container #result {
  word-wrap: break-word;
  max-width: calc(100% - 40px);
  overflow-y: scroll;
  height: 100%;
}

#result::-webkit-scrollbar {
  width: 1rem;
}

.result-container .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}

input[type="number"] {
  height: 1.3rem;
  font-size: 1.1rem;
}

input[type="checkbox"] {
  height: 1.3rem;
  width: 1.3rem;
}

.btn {
  border: none;
  background-color: #fff;
  color: rgb(10, 10, 10);
  font-size: 16px;
  cursor: pointer;
  color: rgb(8, 8, 8);
  font-family: poppins;
  transition: 0.2s ease-in-out;
}

#clipboard {
  border-radius: 5px;
}

#clipboard:hover {
  background-color: yellow;
  box-shadow: whitesmoke 0 2px 10px;
  font-weight: 800;
}

#clipboard:active {
  background-color: rgb(252, 250, 253);
  transform: scale(0.95);
}

.btn-large {
  display: block;
  border-radius: 5px;
  padding: 8px 8px;
  width: 100%;
}

.btn-large:hover {
  transition: 0.2s ease-in-out;
  background-color: yellow;
  box-shadow: whitesmoke 0 2px 10px;
  font-weight: 800;
}

.btn-large:active {
  background-color: rgb(252, 250, 253);
  transform: scale(0.98);
}

.setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

#generate {
  margin-top: 20px;
}
