@font-face {
  font-family: WS;
  src: url("fonts/WorkSans-Regular.woff2") format("woff2"), url("fonts/WorkSans-Regular.woff") format("woff");
}
@font-face {
  font-family: WSi;
  src: url("fonts/WorkSans-Italic.woff2") format("woff2"), url("fonts/WorkSans-Italic.woff") format("woff");
}
* {
  box-sizing: border-box;
  font: 20px WS, sans-serif;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: white;
  color: #2b170b;
  border: 1px solid #d0a87c;
  border-radius: 6px;
  padding: 5px;
  max-width: 100%;
}

body {
  max-width: 860px;
  width: 100%;
  padding: 1em;
  margin: 0 auto;
  cursor: default;
  background: #f8f6f3;
  color: #2b170b;
}

.splashscreen {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

header {
  position: fixed;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: #f8f6f3;
  border-bottom: 1px solid;
  padding: 5px 0;
  width: 860px;
  max-width: calc(100% - 2em);
  align-items: center;
}
header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

section {
  padding-top: 40px;
}

button {
  background: #ebdac7;
  color: #2b170b;
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1px solid #d0a87c;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 6px;
}
button:hover {
  background: #ebe5dc;
}
button:disabled {
  background: #eee;
  color: #555;
  border: 1px dashed #555;
}

h1, h2, h3, strong {
  font-weight: bold;
}

em {
  font-family: WSi, sans-serif;
}
em strong {
  font-family: WSi, sans-serif;
  font-weight: bold;
}

h1 {
  margin-top: 0;
  font-size: 2em;
  display: flex;
  gap: 10px;
  align-items: center;
}

h2 {
  font-size: 1.3em;
}

h3 {
  font-size: 1.2em;
}

.box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(248, 246, 243, 0.8);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: -1;
}
.box .innerBox {
  background: #f8f6f3;
  max-width: 500px;
  width: 100%;
  margin: 20px;
  border-radius: 6px;
  border: 1px solid #d0a87c;
  padding: 20px;
}
.box .innerBox *:first-child {
  margin-top: 0;
}

.gridHome {
  display: grid;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
  border-bottom: 1px solid #d0a87c;
  padding: 3px 6px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow-x: auto;
  width: 100%;
  margin: 5px 0;
}
.gridHome:first-child {
  min-width: 5rem;
}
.gridHome > * {
  padding: 0.1rem 0.2rem;
  cursor: pointer;
}
.gridHome:nth-child(odd) {
  background: #f0ece6;
}
.gridHome:nth-child(even) {
  background: #f8f6f3;
}
.gridHome:hover {
  background: #ebe5dc;
}

textarea, input[type=text], input[type=number] {
  width: 100%;
  padding: 5px;
  border: 1px solid #d0a87c;
}

textarea {
  height: 300px;
}

.emoji {
  font-family: Apple Color Emoji, "Noto Color Emoji", "Segoe UI Emoji";
  text-shadow: 0 0 3px #ffffff;
}

.flexHome {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.flexBts {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.flexBts.col {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.pinHeader {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
  align-items: center;
}
.pinHeader div:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wrapperBts {
  max-height: 350px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #d0a87c;
  border-radius: 6px;
}

.parts2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
  margin-bottom: 1em;
}

.parts3 {
  display: grid;
  grid-template-columns: auto 80px 120px 42px;
  gap: 5px;
  align-items: center;
}

.parts4 label {
  display: inline;
}

.seasons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.fourSelects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}
.fourSelects * {
  width: 100%;
}

@media only screen and (max-width: 470px) {
  .fourSelects {
    grid-template-columns: 1fr;
  }
}
.logo {
  font-size: 6rem;
}

@media only screen and (max-width: 650px) {
  .logo {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 550px) {
  .logo {
    display: none;
  }
}
mark {
  background: #ffdbbb;
}

.index {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
  justify-content: center;
}
.index > * {
  border: 1px solid #d0a87c;
  padding: 0.2rem 0.4rem;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index > *:first-child {
  width: 180px;
}

.blink {
  animation-duration: 2s;
  animation-name: target;
}

@keyframes target {
  0% {
    background: burlywood;
  }
  100% {
    background: rgba(222, 184, 135, 0);
  }
}
.wait {
  animation: respire 0.7s ease-in-out infinite alternate;
}

@keyframes respire {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
hr {
  border: none;
  border-bottom: 3px double #2b170b;
  margin: 25px 0;
}

.picture {
  max-width: 100%;
  width: 500px;
  border-radius: 6px;
  border: 1px solid #d0a87c;
}

.btTop {
  position: fixed;
  bottom: 0;
  right: 15px;
  padding: 3px;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 0 0;
}/*# sourceMappingURL=style.css.map */