html {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #001645;
}

body {
    background: url('/images/mobile.webp');
    background-color: #001645;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
    padding: 50px 10px;
}

@media screen and (min-width: 768px) {
    body {
        background: url('/images/desktop.webp');
    }
}

* {
    color: #FFB428;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

section#logo {
    padding-top: 2em;
}

section#counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}
button {
    border: 2px solid #FFB428;
    border-radius: 10px;
    background: #FEE3A8;
    background: radial-gradient(circle, rgba(254, 227, 168, 1) 0%, rgba(255, 180, 40, 1) 100%);
    color: #00276B;
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 2em;
    line-height: 0.9em;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: transparent;
    color: #FFB428;
    border: 2px solid #FFB428;
    cursor: pointer;
}

span#count {
    font-size: 8em;
    padding: 0 0.5em;
}

section#nutrition {
    width: 400px;
    max-width: 100%;
    border-top: 2px solid #FFB428;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section#nutrition div {
    margin-top: -1em;
    background: #00276B;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 10px;
    border: 2px solid #FFB428;
    font-size: 1.2em;
}

section#nutrition table {
    width: 100%;
}

section#nutrition table td {
    padding: 3px 0px;
}

section#nutrition table td:last-of-type {
    text-align: right;
}