body {
    background-image: url("images/birthday.jpg");
    background-position: center;

}

h1 {
    text-align: center;
    padding: 2rem;

}

.container {
    text-align: center;
    padding-bottom: 1rem;
}

label {
    display: block;
    padding: 1rem;
    font-size: large;
}

button {
    display: block;
    margin: auto;
    margin-top: 1rem;
    ;
}

button:hover {
    background-color: pink;
}

#output {
    padding: 1rem;
    font-size: x-large;
}

#privacy-note {
    background-color: cadetblue;
    text-align: center;
    display: block;
    padding: 0.3rem;
}

#privacy-btn {
    background-color: red;
    margin: auto;
}

.link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
}

.list-non-bullet {
    list-style: none;
    padding-inline-start: 0px;
}

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

.footer {
    background-color: whitesmoke;
    color: black;
    padding: 2rem;
    text-align: center;
    border-top-right-radius: 1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    box-shadow: 0 1px 25px #c5cddd;
}

.footer .footer-header {
    font-weight: bold;
    font-size: large;
    text-align: center;
    
}

.footer .link {
    color: rgb(240, 40, 26);
    
}

.footer ul {
    padding-inline-start: 0px;
}

.footer .link:hover {
    color: black;
}