* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Overpass', sans-serif;
  font-size: 15px;
  background-color: hsl(216, 12%, 8%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 420px;
  background-color: #181F2A;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.star {
  width: 50px;
  height: 50px;
  background-color: #282F3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: hsl(25, 97%, 53%);
}

h1 {
  font-size: 24px;
}

p {
  font-size: 14px;
  color: hsl(217, 12%, 63%);
}

.point {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.btn {
  width: 45px;
  height: 45px;
  background-color: #282F3B;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: hsl(25, 97%, 53%);
  color: black;
}

button {
  background-color: hsl(25, 97%, 53%);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 20px;
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  letter-spacing: 5px;
}

button:hover {
  background-color: hsl(0, 0%, 100%);
}

.hidden {
  display: none;
  text-align: center;
}

.selectd h3 {
  background-color: hsl(213, 19%, 24%);
  border-radius: 20px;
  padding: 8px 20px;
  margin: 20px 0;
  color: hsl(25, 97%, 53%);
  font-size: 14px;
}