.MainWrapper {
  display: flex;
}
.btn {
  width: 42.5%;
  height: 75px;
  font-size: 20px;
  border-style: none;
  border-radius: 10px;
  margin-left: 5%;
  font-size: 30px;
  color: white;
  background-color: #0c0c0d;
  transition: 0.1s;
  font-weight: 900;
}
.btn:active {
  transform: scale(95%);
}
.output {
  margin-top: 25px;
  text-align: center;
  display: grid;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 90%;
  float: right;
  top: 0;
  overflow: hidden;
}
.output p {
  margin: 0px;
  font-family: monospace;
  color: white;
  font-weight: bolder;
  font-size: 25px;
  overflow: hidden;
}
.inputWrapper {
  width: 90%;
  top: 20px;
  position: relative;
}
.inputWrapper input, .inputWrapper textarea, .inputWrapper select {
  width: 90%;
  height: 100px;
  border-style: none;
  border-radius: 10px;
  margin-left: 5%;
  margin-top: 10px;
  padding: 25px;
  font-size: 30px;
  color: white;
  font-weight: 900;
  background-color: #0c0c0d;
}
.inputWrapper label {
  margin-top: 10px;
  font-size: 30px;
  color: white;
  font-weight: 900;
  font-family: monospace;
  margin-left: 5%;
}
.inputWrapper h1 {
  font-size: 25px;
  color: white;
  font-weight: 900;
  font-family: monospace;
  margin-left: 5%;
  color: #f53325;
}
