* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 15px;
  font-family: "Overpass", sans-serif;
  line-height: 140%;
  letter-spacing: -0.3px;
  color: var(--grey-500);
  transition: 300ms;
}

:root {
  --orange-500: #fb7413;
  --white: #fff;
  --grey-500: #959eac;
  --grey-900: #252d37;
  --grey-925: #19202a;
  --grey-950: #121417;
  --font-weight-1: 400;
  --font-weight-2: 700;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  height: 100vh;
  background-color: var(--grey-950);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 400px;
  border-radius: 20px;
  padding: 40px 32px;
  background-color: var(--grey-925);
}

.transition-in {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.transition-in.show {
  opacity: 1;
  transform: translateY(0);
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-wrap-style: balance;
}

.highlight {
  background-color: var(--grey-900);
  padding: 12px 24px 8px;
  border-radius: 32px;
  color: var(--grey-500);
}

#result {
  color: var(--orange-500);
}

.star-icon {
  background-color: var(--grey-900);
  width: fit-content;
  padding: 12px 12px 6px;
  border-radius: 100%;
}

.info {
  display: inherit;
  flex-direction: inherit;
  gap: 8px;
}

h1 {
  color: var(--white);
  font-size: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.radio {
  display: none;
}

.options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.label {
  font-weight: var(--font-weight-2);
  padding: 15px 20px 11px 20px;
  border-radius: 100%;
  background-color: var(--grey-900);
  color: var(--grey-500);
  transition: 300ms;
  cursor: pointer;
}

.active {
  background-color: var(--orange-500);
  color: var(--white);
}

label:hover {
  background-color: var(--white);
  color: var(--grey-950);
}

button {
  background-color: var(--orange-500);
  color: var(--grey-900);
  padding: 12px 0 9px;
  text-transform: uppercase;
  font-weight: var(--font-weight-2);
  border: none;
  border-radius: 24px;
  letter-spacing: 2px;
  cursor: pointer;
}

button:hover {
  background-color: var(--white);
  color: var(--grey-950);
}

a {
  padding: 12px 24px 8px;
  text-decoration: none;
  border-radius: 32px;
}
a:hover {
  background-color: var(--grey-900);
  padding: 12px 24px 8px;

  color: var(--grey-500);
}
