/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  font-size: 16px;
  background: #203852;
}

html {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  user-select: none;
  text-size-adjust: none;
  height: 100vh;
  height: 100dvh;
  overscroll-behavior: none;
}

body {
  height: 100%;
  overscroll-behavior-y: contain;
}

.button {
  display: inline-block;
  padding: 10px 24px;
  font-weight: normal;
  line-height: 1em;
  margin: 20px 0;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  text-shadow: #444 1px 1px 2px;
  border: 1px solid #203852;
  background-image: linear-gradient(#2c5077, #203852);
}
.button.red {
  background-image: linear-gradient(#a30017, #72000d);
  border: none;
}

#not-logged-in {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  background: #222;
}
#not-logged-in .language-switcher {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}
#not-logged-in .language-switcher a {
  display: inline-block;
  padding: 10px;
  color: #000;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}
#not-logged-in.image-color-is-dark .language-switcher a {
  color: #fff;
  text-shadow: 0px 0px 3px #000;
}
#not-logged-in .not-logged-in-content {
  z-index: 10;
}
#not-logged-in .not-logged-in-content .button {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#not-logged-in .background-image {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  display: none;
  opacity: 0;
  transition: opacity 1s;
}
#not-logged-in .debug-txt {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1px 2px;
  position: absolute;
  bottom: max(env(safe-area-inset-bottom, 5px), 5px);
  z-index: 99;
  background: rgba(255, 255, 255, 0.75);
  font-family: monospace;
  font-size: 0.8em;
}
