@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: whitesmoke;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

h1 {
  color: grey;
}

textarea {
  background-color: whitesmoke;
  width: 100%;
  height: 100px;
  margin: 10px 0;
  padding: 10px;
  font-size: 16px;
  border: 1px solid rgb(209, 209, 209);
  resize: none;
  color: grey;
  border: none;
}

textarea:focus {
  outline: none;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.erase:hover {
  background-color: rgb(211, 51, 51);
}

button {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  color: grey;
  border: 1px solid grey;
  cursor: pointer;
}

button:hover {
  background-color: grey;
  color: whitesmoke;
}

#copyButton {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  background-color: green;
  color: #fff;
  cursor: pointer;
}

details {
  margin: 10px 0;
  display: flex;
  flex-direction: row;
}

details[open] button {
  color: blue;
}

@media only screen and (max-width: 425px) {
  h1 {
    font-size: 24px;
  }
  .container {
    margin: 0 5%;
  }
  .container button {
    padding: 5px 10px;
    font-size: 12px;
  }
  .container textarea {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */