/*
 Theme Name: Fluffy Empire
 Author: it-Dimension
 Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  /* outline: 1px solid green; */
}

:root {
  --bg: #fffcf3;
  --black: #1d1d1d;
  --yellow: #f9db90;
  --grey: #878787;
  --dark-grey: #585858;
  --font-family-main: "Lithium", sans-serif;
  --font-family-mon: "Manrope", sans-serif;
  --tiffany: #74c8c3;
  --font-color: #002927;
  --lato: "Lato", sans-serif;
  --playfair: "Playfair Display", sans-serif;
  --pimart-color: #ffe3c9;
  --black: #000000;
  --border: #bebebe;
  --light-grey: #878787;
  --white: #ffffff;
  --font-imb-regular: "IBM Plex Mono Regular", sans-serif;
  --font-imb-bold: "IBM Plex Mono Bold", sans-serif;
  --font-imb-medium: "IBM Plex Mono Medium", sans-serif;
  --font-imb-semibold: "IBM Plex Mono SemiBold", sans-serif;
  --font-pixel: "Press Start 2P", system-ui;
}

.font-l p {
  font-family: var(--font-family-main);
}

.font-m p {
  font-family: var(--font-family-mon);
}

.font-lato p {
  font-family: var(--lato);
}

.font-play p {
  font-family: var(--playfair);
}

.font-imb-regular p {
  font-family: var(--font-imb-regular);
}

.font-imb-bold p {
  font-family: var(--font-imb-bold);
}

.font-ibm-medium p {
  font-family: var(--font-imb-medium);
}

html {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow-x: hidden;
}

header,
footer {
  width: 100%;
  justify-items: center;
}

main {
  width: 100%;
}

header {
  z-index: 999;
  position: sticky;
  top: 0;
  background-color: #f3e03b;
}

a {
  text-decoration: none;
}

button {
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
  -webkit-transition: transform 0.1s ease, box-shadow 0.1s ease;
  -moz-transition: transform 0.1s ease, box-shadow 0.1s ease;
  -ms-transition: transform 0.1s ease, box-shadow 0.1s ease;
  -o-transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:active {
  transform: scale(0.99);
}

button:focus-visible {
  border: none;
  outline: none;
}

.grecaptcha-badge {
  visibility: hidden;
  z-index: -1;
}

footer {
  border-top: 1px solid #bebebe;
}

body:has(.header-mob.open) {
  overflow: hidden;
}
