* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
}
.main-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-evenly;
  background-color: rgb(63, 63, 63);
}
.row {
  display: flex;
  justify-content: space-evenly;
}

.element {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.box {
  width: 30vw;
  height: 25vh;
  padding: 10px;
  background-color: rgb(129, 129, 129);
  display: flex;
  flex-direction: column;
  color: white;
  border-radius: 5px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.output {
  width: 30vw;
  height: 25vh;
  padding: 10px;
  background-color: rgb(129, 129, 129);
  display: flex;
  flex-direction: column;
  color: white;
  border-radius: 5px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  white-space: pre-wrap;
}

.titleOne {
  width: 30vw;
  height: 6vh;
  color: white;
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}
.titleTwo {
  width: 30vw;
  height: 3.5vh;
  color: white;
  font-size: 1vw;
  font-weight: bold;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.logInput {
  width: 100%;
  height: 100%;
  padding: 10px;
  color: rgb(80, 80, 80);
  background-color: rgb(200, 200, 200);
  outline: none;
  resize: none;
  overflow-y: auto;
  box-sizing: border-box;
}

.enterButton {
  width: 30%;
  padding: 8px;
  font-size: 16px;
  color: white;
  background-color: rgb(63, 63, 63);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  box-sizing: border-box;
}

.copyButton {
  width: 30%;
  padding: 8px;
  font-size: 16px;
  color: white;
  background-color: rgb(63, 63, 63);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  box-sizing: border-box;
}
.inputBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30vw;
  height: 25vh;
  padding: 5px;
  background-color: rgb(129, 129, 129);
  border-radius: 5px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
