@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "popins";
  src: url("/assets/fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Popins";
  src: url("/assets/fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  background-color: hsl(0, 0%, 94%);
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.container {
  background-color: hsl(0, 0%, 100%);
  padding: 24px;
  border-radius: 10px;
  border-bottom-right-radius: 80px;
  display: flex;
  justify-content: center;
  width: 70%;
  max-width: 400px;
  flex-direction: column;
}

.container-age-input {
  padding: 8px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container-input {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-right: 16px;
}

.age-label {
  color: hsl(0, 1%, 44%);
  margin-bottom: 8px;
}

.age-input {
  padding: 12px;
  border: 1px solid hsl(0, 0%, 86%);
  border-radius: 8px;
  outline: none;
  font-weight: 700;
}
.age-input:focus {
  border: 1px solid hsl(259, 100%, 65%);
}

.container-separator {
  background-color: white;
  display: flex;
  align-items: center;
}

.container-separator-line {
  background: hsl(0, 0%, 86%);
  flex: 1;
  height: 1px;
}

.container-rounded {
  background-color: hsl(0, 0%, 8%);
  border-radius: 50%;
  padding: 8px;
}

.img-arrow {
  width: 32px;
  height: 32px;
}

.text-output {
  color: hsl(0, 0%, 8%);
  font-size: 48px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0;
}

.highlight-output {
  color: hsl(259, 100%, 65%);
}

.attribution {
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
}
.attribution a {
  color: hsl(259, 100%, 65%);
}/*# sourceMappingURL=main.css.map */