@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  background-color: cornflowerblue;
  color: white;
  text-align: center;
}

h3 {
  font-size: 1.2rem;
}

textarea {
  width: 400px;
  height: 80px;
  font-size: 1.2rem;
  border-radius: 5px;
  padding: 10px;
}

.tag {
  background-color: orange;
  padding: 7px 10px;
  border-radius: 20px;
  display: inline-block;
  font-size: 1rem;
}

.tag.highlight {
  background-color: #273c75;
}
