*,
:after,
:before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: clamp(12px, 4vw, 16px);
    min-height: 100svh;
}

body {
    min-height: 100svh;
    background: #111;
}

.innerbody {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100svh;
    color: #222;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    background: transparent url(/img/bg.jpg) 0% center / cover no-repeat;
    max-width: 700px;
    margin-inline: auto;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #243313;
}

h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    color: #243313;
}

.header {
    background: rgba(0, 0, 0, 0.35);
    flex-grow: 1;
}

.outercontainer {
    background: rgba(0, 0, 0, 0.35);
}

.orange .outercontainer {
    background: rgba(0, 0, 0, 0);
}

.topbar {
    padding: 1rem clamp(0rem, 7vw, 3rem);
    color: white;
    position: relative;
    z-index: 2;
}

.topbar a {
    color: white !important;
    text-decoration: none;
}

.container {
    padding: 2rem clamp(0rem, 7vw, 3rem) 2.5rem;
    background: white;
    min-height: 15rem;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

form,
form>div {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

form {
    gap: 0.75rem;
}

input,
button {
    padding: 0.75rem 0.5rem;
    border-radius: 0.3rem;
    font-family: sans-serif;
    background: #eee;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #222;
    font-size: 1rem;
}

button {
    font-weight: bold;
    cursor: pointer;
    background: #243313;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 0;
    font-size: 1.15rem;
    margin-top: 0.25rem;
}


form>button {
    margin-top: 0;
}

.well {
    background: #24331322;
    height: 10rem;
    color: #243313;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.1;
    border-radius: 0.3rem;
}

h2+.well {
    position: relative;
    top: 0.25rem;
}

.well+div {
    padding-top: 1.5rem;
}

.well svg {
    height: 4rem;
}

.well.finish svg,
.well.locate svg,
.well.start svg {
    height: 6rem;
}

.well.navigate span {
    font-size: 4rem;
    padding-top: 0.05em;
    display: inline-block;
}

.help-block {
    color: red;
}


body.nobuttons .header {
    flex-grow: 0;
}

body.nobuttons .outercontainer {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    padding-inline: clamp(0rem, 2vw, 1rem);
}

body.nobuttons .outercontainer .container {
    margin-bottom: clamp(0rem, 9vw, 3.35rem);
    padding-inline: clamp(0rem, 5vw, 2rem);
    border-radius: .3rem;
    padding-block: 1.5rem 1.85rem;
}

/* --- ORANGE --- */


body.orange .innerbody {
    background: transparent url(/img/bg3.jpg) 50% center / cover no-repeat;
}

body.orange a {
    color: #4a2300;
}

body.orange button {
    background: #4a2300;
}

body.orange .well {
    background-color: #4a230022;
    color: #4a2300;
}

body.orange h2 {
    color: #4a2300;
}

body.orange .well svg {
    fill: #4a2300;
}