@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Tilt+Warp&display=swap");
:root {
  --IsMobile: 0; }

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: #f3eeee;
  background-color: #2a2a2a;
  margin: 0;
  padding: 0; }

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%; }

.main-U {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 100vh;
  font-size: calc(2em + (var(--IsMobile) * 2em));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%; }
  .main-U[data-IsMobile="1"] {
    font-size: 4em; }

.BG-IMG {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; }

tit {
  font-family: "Tilt Warp", cursive;
  font-size: 5em;
  font-weight: 700;
  line-height: 1.2;
  color: #f3eeee;
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase; }

h2 {
  font-family: "Noto Sans", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
  color: #f3eeee;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%; }

p {
  font-family: "Noto Sans", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2;
  color: #f3eeee;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%; }

.ScreenBlocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2a2a2a;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  animation: fadeOut 2s 1.5s forwards; }
@keyframes fadeOut {
  from {
    opacity: 1;
    z-index: 999; }
  to {
    opacity: 0;
    z-index: -1; } }
.IntoVid {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; }

.TabSwitcher {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -80%) rotate(360deg);
  z-index: 1000;
  transition: all 2.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .TabSwitcher:hover {
    transform: translate(-50%, -55%); }

button {
  font-family: "Noto Sans", sans-serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
  color: #3f6075;
  background-color: #0017b2;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  width: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  button:hover {
    background-color: #3f6075;
    color: #0017b2;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
  button:active {
    background-color: #dfc43d;
    transform: scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #dfc43d; }
  button:disabled {
    background-color: #3f6075;
    cursor: not-allowed;
    opacity: 0.5; }
  @media print {
    button {
      display: none; } }

.LogList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%; }

.Log {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem;
  padding: 1rem;
  background-color: #3f6075;
  border-radius: 10px;
  border: 2px solid #0017b2;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
  .Log:hover {
    background-color: #0017b2;
    color: #3f6075;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
    .Log:hover p {
      color: #2a2a2a; }
  .Log p {
    font-family: "Noto Sans", sans-serif;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.2;
    color: #f3eeee;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 12%; }

.Selector {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  padding: 1rem; }
  .Selector input {
    font-family: "Noto Sans", sans-serif;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.2;
    color: #f3eeee;
    text-align: center;
    width: 70%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #0017b2;
    background-color: #3f6075;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .Selector input:focus {
      outline: none;
      border-color: #dfc43d;
      box-shadow: 0 0 0 2px #dfc43d; }

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