@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #181940;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  margin: 0;
  min-height: 100vh;
}

.chat-bubble {
  background-color: #f7f7f7;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
}

.message {
  text-align: center;
  font-size: 44px;
}

.name {
  font-weight: 800;
}

.btn {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  margin: 12px;
  background-color: hsl(49, 84%, 56%);
  font-family: "poppins";
  font-weight: 900;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  background-color: hsl(49, 84%, 46%);
}

.btn:active {
  background-color: hsl(49, 84%, 36%);
  transform: translateY(2px);
}
