@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}

section {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
section h1 {
  margin: 1rem;
  font-size: 1.8rem;
}
section form {
  align-items: center;
}
section label {
  margin: 0.5rem;
  display: block;
}
section button {
  width: 100px;
  height: 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  background-color: var(--light-green);
  color: black;
}
section input {
  width: 100px;
  height: 2rem;
  color: black;
}
section #output-box {
  margin: 2rem;
}
/* links */
.link {
  text-decoration: none;
  padding: 0.5rem 1rem;
  /* background-color: azure; */
  /* margin-bottom: 0.2rem; */
  display: inline-block;
  color: black;
}
.primary-link {
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  color: white;
}
.secondary-link {
  /* color: red; */
  border-radius: 0.5rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
/* list */
.list-non-bullet {
  list-style: none;
  padding: 0;
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.list-item-inline {
  display: inline;
  padding: 0 0.5rem;
}

/* footer */
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--primary-color);
  padding: 2rem 1rem;
  text-align: center;
  color: white;
  text-align: center;
  border-top-right-radius: 1rem;
}
.footer-header {
  color: black;
}
.footer .links {
  color: white;
}
.footer ul {
  padding: 0;
}
