* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 20px;
}
body {
  overflow: visible;
}

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  background-color: #85ffbd;
  background-image: linear-gradient(45deg, #85ffbd 0%, #fffb7d 100%);

  flex-direction: column;
  padding: 50px 0;
}
section h1 {
  color: cadetblue;
  text-align: center;
  width: 100%;
  font-size: 50px;
  margin-bottom: 10px;
}
section p {
  text-align: center;
  color: darkslategray;
  width: 100%;

  margin-bottom: 40px;
}

input {
  width: 100%;
  height: 200px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow: scroll;

  height: 500px;
  padding-bottom: 10%;
  scrollbar-color: red;
}
::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
  background: transparent; /* Optional: just make scrollbar invisible */
}

.texts p {
  color: black;
  text-align: left;
  width: 100%;
  background-color: rgb(255, 247, 132);
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: bold;
}
.texts textarea {
  background-color: rgb(243, 243, 243);
  width: 100%;
  font-size: 48px;
  font-weight: bold;
  cursor: text;
  height: 250px;
}
.texts p.replay {
  text-align: right;
}
