@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');
:root {
  --primary-color: #fbffff;
  --text-color: #170d08;
  --link-color: #e3c4b4;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu', sans-serif;
}
body {
  height: 100vh;
  background-color: var(--primary-color);
  color: var(--text-color);
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50vw;
  /* margin: 0 auto; */
  margin: 0 auto;
  text-align: center;
  height: 80%;
  /* margin-top: 2rem; */
}
section h1 {
  margin: 1rem;
  font-size: 1.8rem;
}
section div {
  margin: 0.5rem;
}
section input[type='number'] {
  height: 2.5rem;
  width: 6rem;
}
section a {
  color: var(--link-color);
  font-weight: bold;
}
footer a {
  color: var(--link-color);
  font-weight: bold;
}
section a {
  text-decoration: none;
  /* background-color: var(--text-color); */
  display: block;
  margin-top: 0.4rem;
}
section span {
  /* text-decoration: none; */
  background-color: var(--text-color);
  display: block;
  height: 2rem;
  width: 5rem;
  text-align: center;
  border-radius: 1rem;
}
section button {
  margin: 1rem;
  height: 2.5rem;
  width: 5rem;
  font-weight: bold;
  font-size: 1rem;
}
section .output {
  font-size: 1.2rem;
  font-weight: bold;
}

.link {
  text-decoration: none;
  padding: 0.5rem 1rem;
  /* background-color: azure; */
  /* margin-bottom: 0.2rem; */
  display: inline-block;
  /* color: white; */
}
.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 {
  /* background-color: var(--primary-color); */
  padding: 2rem 1rem;
  text-align: center;
  /* color: white; */
  text-align: center;
  border-top-right-radius: 1rem;
}
.footer .links {
  /* color: white; */
}
.footer ul {
  padding: 0;
}
