* {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
}

:root {
  --color-scheme: dark;
  --nav-height: 75px;
  --tone-1: #567a9e;
  --tone-2: #435e7a;
  --tone-3: #2e4155;
  --tone-red: #e45845;
  --tone-red-darker: #bb493a;
  --duotone-1: rgb(158, 0, 129);
  --duotone-2: rgb(255, 40, 0);
  --bs-dark-rgb: rgb(17, 22, 26);
}

html {
  box-sizing: border-box;
  font-size: 100%;
  color-scheme: var(--color-scheme);
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

.background-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: #000;
}
.background-container picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.background-container picture img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
}

.message {
  position: absolute;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  max-width: 200px;
  word-wrap: break-word;
  z-index: 1;
  pointer-events: none;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

#editor {
  position: absolute;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
#editor.hidden {
  display: none;
}
#editor input[type=text] {
  width: 200px;
  padding: 5px;
  margin-right: 5px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}
#editor button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#message-footer {
  font-size: 10px;
  color: #333333;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  margin: 0.3em 0 0 0;
}

/*# sourceMappingURL=main.css.map */
