* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background-image: linear-gradient(120deg, #ff3300, #3fa9f0);
}

.pagewrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.actions {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  width: 100px;
  height: 30px;
  background-color: #333300;
  color: white;
  font-family: sans-serif;
  border: none;
  border-radius: 7px;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
}

#transcript {
  background-color: white;
  width: 80%;
  height: 330px;
  color: black;
  border-radius: 4px;
  overflow: scroll;
}

.comando {
  color: brown;
}
