html {
    background-image: url("/img/background.jpg");
    background-color: rgba(40, 50, 99, 255);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
}

body {
    background-color: rgba(0, 0, 0, 0);
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    min-height: calc(100% - 50px);
    color: black;
    width: 100%;
}

h1 {
    font-weight: bold;
    color: white;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

a:link {
    font-weight: bold;
    color: #a70616;
}

a:visited {
    font-weight: bold;
    color: #a70616;
}

a:hover {
    font-weight: bold;
    color: #d1061b;
}

a:active {
    font-weight: bold;
    color: #d1061b;
}

input[type=number] {
	padding: 0;
	padding-left: 5px;
}

.scroll {
    position: relative;
    background-image: url("/img/titleBackgroundTileable.png");
    background-color: rgba(0, 0, 0, 0);
    background-repeat: repeat-y;
    background-size: 100%;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    min-height: calc(100% - 50px);
    width: 100%;
    margin-top: -250px;
    padding-top: 250px;
    z-index: 0;
}

.btnBox {
    margin-bottom: 25px;
}

.titleRow {
    position: relative;
    background-image: url("/img/title.png");
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1 / 0.33;
    margin-top: 50px;
    z-index: 1;
}

.content {
    margin-top: 100px;
    color: white;
}

.shopIcon {
    width: 64px;
    margin: 16px;
}

.treeCount {
	width: 38px;
	height: 38px;
}

.treeLabel {
	margin-right: 10px;
	line-height: 80%;
}

.treePrice {
	font-size: 0.75em;
}

.btn-crimson {
    min-width: 240px;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    margin-top: 25px;
    margin-bottom: 25px;
    --bs-btn-color: #e7c60c;
    --bs-btn-bg: #a70616;
    --bs-btn-border-color: #8b010e;
    --bs-btn-hover-color: #ffdb0d;
    --bs-btn-hover-bg: #d1061b;
    --bs-btn-hover-border-color: #8b010e;

    --bs-btn-focus-shadow-rgb: 225,83,97;
    --bs-btn-active-color: #ffdb0d;
    --bs-btn-active-bg: #d1061b;
    --bs-btn-active-border-color: #8b010e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffdb0d;
    --bs-btn-disabled-bg: #d1061b;
    --bs-btn-disabled-border-color: #8b010e;
}

.btn-crimson-sm {
    display: block;
    min-width: 150px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    --bs-btn-color: #e7c60c;
    --bs-btn-bg: #a70616;
    --bs-btn-border-color: #8b010e;
    --bs-btn-hover-color: #ffdb0d;
    --bs-btn-hover-bg: #d1061b;
    --bs-btn-hover-border-color: #8b010e;

    --bs-btn-focus-shadow-rgb: 225,83,97;
    --bs-btn-active-color: #ffdb0d;
    --bs-btn-active-bg: #d1061b;
    --bs-btn-active-border-color: #8b010e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffdb0d;
    --bs-btn-disabled-bg: #d1061b;
    --bs-btn-disabled-border-color: #8b010e;
}

.lbWarning {
    color: #8b010e;
    font-weight: bold;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.offerCard {
    width: fit-content;
    margin: auto;
}

.statusCard {
    display: block;
    width: fit-content;
    background-color: antiquewhite;
    border-radius: 10px;
    border: 4px solid crimson;
    min-width: 220px;
    min-height: 100px;
    max-width: 220px;
    max-height: 100px;
    margin: 5px auto;
}

.statusCard img {
    max-height: 65px;
    margin: 0;
}

@media (min-width: 992px) {
    .scroll {
        width: 75%;
        margin-right: auto;
        margin-left: auto;
    }
}