:root {
    --fontFamily: "Open Sans";
    --itemTitleFontFamily: "Open Sans";
    --itemTitleDisplay: block;
    --headerImageMaxHeight: 200px;
    --footerImageMaxHeight: 200px;

    /* text color */
    --itemTitleColor: black;
    --itemSubtitleColor: black;
    --itemDescriptionColor: black;

    /* font size */
    --itemTitleFontSize: 16px;
    --itemSubtitleFontSize: 16px;
    --itemDescriptionFontSize: 16px;
    --itemPriceFontSize: 16px;

    /* font weight */
    --itemTitleFontWeight: normal;
    --itemSubtitleFontWeight: normal;
    --itemDescriptionFontWeight: normal;
    --itemPriceFontWeight: normal;

    /* other */
    --itemPriceWidth: 150px;
}


body {
    background-color: white;
    font-family: var(--fontFamily);
}
html {
    --scroll-behavior: smooth;
    scroll-behavior: smooth;
}

#container {
    margin: auto;
    max-width: 800px;
}

.jumbotron {
    background-color: white;
}
.nav-item {
    cursor: pointer;
}

.table tr td {
    width: 80px;
}
.table tr td:first-child {
    padding-left: 20px;
    width: max-content;
}

h3 {
    padding-top: 70px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

/* ITEMS */

.itemTitle {
    font-weight: var(--itemTitleFontWeight);
    font-family: var(--itemTitleFontFamily);
    font-size: var(--itemTitleFontSize);
}

.itemSubtitle {
    display: block;
    color: var(--itemSubtitleColor);
    font-weight: var(--itemSubtitleFontWeight);
    font-size: var(--itemSubtitleFontSize);
}

.itemDescription {
    font-weight: var(--itemDescriptionFontWeight);
    font-size: var(--itemDescriptionFontSize);
}

.itemPrice {
    width: var(--itemPriceWidth);
    text-align: right;
    float: right;
    padding-right: 10px;
    font-weight: var(--itemPriceFontWeight);
    font-size: var(--itemPriceFontSize);
}

.itemAmount {
    padding-right: 10px;
    padding-left: 10px;
    text-align: right;
    float: right;
    font-weight: var(--itemPriceFontWeight);
    font-size: var(--itemPriceFontSize);
}

#menu {
    margin-bottom: 50px;
}

#footerText {
    font-family: var(--fontFamily);
    text-align: center;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#footer {
    margin-top: 80px;
    display: none;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 70px;
}

#object-name {
    display: var(--itemTitleDisplay);
    text-align: center;
    padding: 30px;
}

#object-imageHeader {
    max-height: var(--headerImageMaxHeight);
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

#object-imageFooter {
    max-height: var(--footerImageMaxHeight);
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

#object-languages {
    display: none;
    margin-top: 40px;
}

/* #language-picker {
    display: none;
} */

/* LANDING PAGE */

.card-deck {
    align-content: center;
    margin: 30px;
}

.card-venueList {
    max-width: 25rem;
}

#footer-landing {
    text-align: center;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 30px;

    border-top: 2px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 130px;
}

#joinButton {
    margin-top: 15px;
}