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

:root {
  --primary-color: blue;
}

* {
  font-family: "Raleway", sans-serif;
}

body {
  margin: auto;
  width: 50%;
  padding: 2rem;
  background-color: whitesmoke;
  text-align: center;
}

.container {
  background-color: white;
  padding: 4rem;
  border-radius: 2rem;
}

label {
  display: block;
  padding: 0.5rem;
  text-align: center;
}

.lucky-num,
.date-of-birth {
  border: 2px solid var(--primary-color);
  height: 2rem;
  width: 200px;
  padding: 0.4rem;
  border-radius: 8px;
  margin: 1rem;
}

button {
  background-color: rgb(22, 81, 190);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  font-size: large;
  cursor: pointer;
  font-family: inherit;
  display: block;
  margin: auto;
}

.result {
  font-size: larger;
  font-weight: bold;
}

.privacy-block{
    background-color: whitesmoke;
    padding: 1rem 2rem;
    border-radius: 1rem;
    bottom: 0;
    margin-top: 1rem;
}

.privacy-label{
    font-size: medium;

}

.privacy-notice{
    font-size: small;
}

footer {
  bottom: 0;
  padding: 1rem;
  position: fixed;
  width: 50%;
  text-align: center;
}

footer,
p {
  font-size: large;
  text-align: center;
}

ul,
li {
  display: inline;
  padding: 0.5rem;
}
