* {
	box-sizing: border-box;
}

:root {
	--pumpkin: #ff7d1a;
	--peach: #ffede0;
	--black: #1d2025;
	--ash: #68707d;
	--gray: #b6bcc8;
	--dust: #f7f8fd;
	--white: #ffffff;
	--modal-bg: #000000bf;
	--primary: var(--pumpkin);
}

/* GENERAL */

html, body {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ash);
	font-family: 'Kumbh Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--black);
	font-weight: 700;
	margin: 0 0 1rem;
	letter-spacing: 0.0625rem;
}

h1 {
	font-size: 1.625rem;
}

h2 {
	font-size: 0.8125rem;
}

p {
	margin: 0 0 1.25rem;
	line-height: 1.5625;
	letter-spacing: -0.025rem;
}

/* Estilos para el botón que se mostrará en la esquina inferior izquierda */
.terms-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: lightblue;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  z-index: 1000;
  text-align: center;
}

