@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

:root {
  --primary-color: #111111;
  --secondary-color: #540000;
  --dark-grey: #383838;
  --off-white: #b09b72;
  --white: white;
}

body {
  background-color: var(--off-white);
  font-family: "Roboto", sans-serif;
  margin: 0rem;
}

.main-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
}

.navigation {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  height: 4rem;
}

.navContent {
  text-align: center;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
}

.heading1 {
  color: var(--secondary-color);
  font-family: "Roboto", sans-serif;
  text-align: center;
  /* font-size: 45px; */
}

.heading2 {
  color: var(--secondary-color);
  text-align: center;
  font-size: 20px;
}

.container {
  padding: 2rem 2rem;
}

.birth-date {
  padding: 0px 10px;
  display: block;
  height: 50px;
  width: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  margin: auto;
}

.lucky-number {
  padding: 0px 10px;
  display: block;
  height: 50px;
  width: 50%;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  margin: auto;
}

.compute-btn {
  padding: 5px 5px;
  display: block;
  height: 40px;
  /* width: 30px; */
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  background-color: var(--secondary-color);
  color: var(--off-white);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  margin: auto;
}

.compute-btn:hover {
  background-color: var(--white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
}

.output {
  font-family: "Roboto", sans-serif;
  color: var(--secondary-color);
  text-align: center;
  font-size: 35px;
}

.footer {
  background-color: var(--primary-color);
  padding: 1rem 1rem;
  /* border-top-left-radius: 1rem;
    border-top-right-radius: 1rem; */
}

.footer-header {
  color: var(--white);
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.footer .link {
  font-size: 20px;
  text-decoration: none;
  padding: 7px 15px;
  background: none;
  color: var(--white);
  border: 1px solid transparent;
}

.footer .link:hover {
  color: var(--off-white);
  border: 1px solid var(--off-white);
  border-radius: 8px;
}

.social-links {
  text-align: center;
  padding-inline-start: 0px;
}

.list-item-inline {
  display: inline;
  padding: 0rem 0.5rem;
}

.list-non-bullet {
  list-style: none;
  margin: 2rem 0;
}