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

@import url('https://fonts.googleapis.com/css2?family=Bungee+Outline&family=Redressed&display=swap');

body {
    min-height: 100vh;
    background-color: wheat;
    display: flex;
    flex-direction: column;
    padding: 1em;
}

#menu {
    display: flex;
    flex-direction: row;
    min-height: 100%;
    flex-grow: 1;
}

#menu section {
    flex-grow: 1;
    flex-basis: 0;
    flex-shrink: 0;
    padding-left: 1em;
    padding-right: 1em;
}

#menu section:not(:first-of-type) {
    border-left: 1px solid lightgray;
    border-left: 1px dotted black;
}

h1 {
    font-family: 'Bungee Outline', cursive;
    font-size: 64px;
    text-align: center;
    font-style: italic
}

h2,
h3,
footer > :not(.contact) {
    font-family: 'Redressed', cursive;
}

section > h2 {
    text-align: center;
    border-bottom: 1px dashed gray;
    font-size: 48px;
}

.list-group-item > h3 {
    text-transform: capitalize;
    color: wheat;
    font-size: 36px;
}

.list-group-item img {
    max-width: 200px;
}

.details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: gray;
}

.price {
    font-weight: bold;
    font-style: italic;
}

.price::before {
    content: '$'
}

.calories::after {
    content: ' calories'
}

footer {
    margin-top: 1em;
    border-top: 1px solid lightgray;
    padding: 1em;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

footer .contact a {
    display: block;
}

footer > :not(.contact) {
    font-size: 24px;
}

a[data-toggle='tooltip']:hover {
    cursor: pointer;
}

.tooltip.show {
    border: 3px solid black;
    border-radius: 6px;
    padding: 0.75em;
    font-size: 1.1rem;
}

.tooltip.show,
.tooltip-inner {
    background-color: white !important;
    color: black;
    opacity: 1 !important;
    text-align: left;
}
