@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Michroma&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

html,
body {
  min-height: 100%;
  margin: 0;
  font-family: "Cascadia Code", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

#notts-app-root {
  min-height: 100vh;
  /* font-family: inherit; */
}

.notts-app-shell {
  min-height: 100vh;
  background: #ffffff url("/static/notts/images/light_background.png") center / cover no-repeat;
}

.notts-app-stage {
  min-height: 100vh;
  background: transparent;
}

#notts-app-root p {
  font-size: 1rem;
}

#notts-app-root h6 {
  font-size: 1.2rem;
}

#notts-app-root h5 {
  font-size: 1.44rem;
}

#notts-app-root h4 {
  font-size: 1.728rem;
}

#notts-app-root h3 {
  font-size: 2.074rem;
}

#notts-app-root h2 {
  font-size: 2.488rem;
}

#notts-app-root h1 {
  font-size: 2.986rem;
}

#notts-app-root .notts-timer-font {
  font-family: "Michroma", sans-serif;
}

.lexend-giga-semibold {
  font-family: "Lexend Giga", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.text-bold {
  font-weight: 700;
}

.slightly-rounded {
  border-radius: 0.35rem;
}

.top-slightly-rounded {
  border-radius: 0.35rem 0.35rem 0 0;
}

.bottom-slightly-rounded {
  border-radius: 0 0 0.35rem 0.35rem;
}

.medium-rounded {
  border-radius: 0.75rem;
}

.fully-rounded {
  border-radius: 9999px;
}

.left-fully-rounded {
  border-radius: 9999px 0 0 9999px;
}

.right-fully-rounded {
  border-radius: 0 9999px 9999px 0;
}

.notts-footer-bar {
  min-height: 3.25rem;
  padding: 0.5rem;
  box-sizing: border-box;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.notts-footer-bar--edge-to-edge {
  margin-inline: calc(var(--notts-footer-screen-padding, 0px) * -1);
  padding-inline: var(--notts-footer-screen-padding, 0.5rem);
}

.notts-footer-action {
  padding: 0.45rem 0.9rem;
  border: 0;
  background: transparent;
  color: #FFFFFF;
  font: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.notts-footer-action:hover,
.notts-footer-action:focus-visible {
  background: #2E3138;
  border-radius: 0.75rem;
}

.notts-bottom-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.notts-bottom-action-icon {
  display: block;
  width: auto;
  height: 1rem;
}

.notts-bottom-action:hover .notts-bottom-action-icon,
.notts-bottom-action:focus-within .notts-bottom-action-icon {
  animation: notts-bottom-action-icon-hover 300ms linear forwards;
}

@keyframes notts-bottom-action-icon-hover {
  0%,
  19% {
    content: url("/static/notts/images/back_graphic.png");
  }

  20%,
  49% {
    content: url("/static/notts/images/back_transition_graphic.png");
  }

  50%,
  100% {
    content: url("/static/notts/images/back_hover_graphic.png");
  }
}

.notts-bottom-action .notts-footer-action:hover,
.notts-bottom-action .notts-footer-action:focus-visible {
  background: transparent;
  border-radius: 0;
}

button {
  font-family: inherit;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
