html {
    font-family: sans-serif;
    font-size: 1em;

    margin: 0;
    padding: 0;
    height: 100%;

    word-break: break-word;
    hyphens: auto;
}

body {
    display: flex;
    align-items: center;
    height: 100%;
    flex-direction: column;

    margin: 0;
    padding: 0;
}

body.friesday {
    background-image: url("assets/background-friesday.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.not-friesday {
    background: center repeat url('assets/background.svg');
    background-size: 8rem;
}

h1 {
    display: none;
}

p.answer {
    font-size: 10rem;
    margin: 0;
    padding: 0;
    text-align: center;
}

.not-friesday p.answer {
    font-size: 6rem;
}

ul.dishes {
    margin: 0;
    padding: 0;
}

ul.dishes li {
    list-style: none;
    text-align: center;

    font-size: 1.5rem;
    padding: 1em;
}

.content {
    width: 100%;
    margin: auto;
}

.footer {
    color: #949494;
    box-sizing: border-box;
    padding: 1rem;
    margin: 1rem auto 0;
    background: #292929;
    width: 100%;
    text-align: center;
}

.footer a, .footer a:visited {
    color: #e6e6e6;
    text-decoration: none;
}

.footer a:hover {
    color: #ffe755;
    text-decoration: underline
}
