@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
html {
  min-height: 100vh;
  cursor: default;
}

body, html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  color: #000;
  background-color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 50px;
  line-height: 50px;
}

/* ----- IMPORT ----- */
* {
  box-sizing: border-box;
  user-select: none;
}

body, html {
  text-align: center;
}

body {
  margin-top: 40px;
}

.content-text,
.content-image {
  padding: 20px 20px 0 20px;
  text-align: center;
}

.content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 40px);
}

.content-text .wrap {
  width: calc(100vw - 40px);
  overflow: hidden;
}
.content-text .wrap p {
  width: 100%;
}

.intro {
  font-size: 50%;
  line-height: 120%;
}
.intro p {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.content-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

img {
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  border-radius: 5px;
  overflow: hidden;
}

#fr-toggle,
.en-content,
#stop {
  display: none;
}

@keyframes bounce {
  0% {
    transform: translateY(-140px);
    opacity: 0;
  }
  90% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 0;
  }
}
.edit-control {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999999999;
  text-align: right;
}

button:disabled {
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

button:disabled:hover {
  cursor: default;
}

button {
  font: inherit;
  border-radius: 5px;
  background-clip: padding-box;
  overflow: visible;
  border: 0;
  text-align: center;
  white-space: nowrap;
  width: auto;
  min-width: 60px;
  max-width: inherit;
  box-shadow: none;
  appearance: none;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 20px;
  height: 40px;
  margin: 5px;
  padding: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.3));
}

button:hover {
  color: #000;
  background-color: #fff;
  cursor: pointer;
}

button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring {
  outline: 1px solid ButtonText;
}
