@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  --primary-color: #ec4899;
}
body {
  font-family: "Poppins", system-ui;
  background-color: #f6f3f9;
}
a {
  text-decoration: none;
  color: black;
}
#website-link {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}
header {
  padding: 15px;
}
#body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 60px);

  flex-direction: column;
  gap: 10px;
}

button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.message {
  font-size: 14px;
  text-align: center;
}
#completed-icon {
  height: 20px;
  width: 20px;
}
#completed-container {
  background-color: transparent;
  display: flex;
  align-items: center;
  color: white;
  padding: 10px;
  gap: 5px;
  opacity: 0;
  transition: opacity 5s ease-in, background-color 5s ease-in;
}
