@charset "UTF-8";
/* CSS Document */
:root{

	--dinogreen: #58a84b;
	--wreckorange: #e57a28;
	--wreckorangehover: #ff8e3c;
	--wisdomyellow: #ffcb40;
	--slatecharcoal: #1f1f1f;
	--byteblue: #007e99;

	--bonewhite: #f4f2ef;
	--fossilgray: #a9a9a9;
	--synthpurple: #7e5bef;
	--dangerred: #d64545;

	--burntsienna: #d9652b;
	--bytewaveteal: #2ca8a0;
	--terminalgrape: #7e3fa4;
	--cometblue: #3f66b0;

	--codeasaurgreen: #58a84b;
	--swampolive: #3b6b2c;
	--fossilwhite: #fdf7eb;
	
	--rustycode: #d97238;
	--stackblue: #355d8c;
	--breakpointred: #a8403f;
	--byteglow: #ccf031;

	--shadowfossil: #666666;
	--terminalwhite: #f4f4f4;

}

.russo-one-regular {
	font-family: "Russo One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.montserrat-regular {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
}

.fira-code-regular {
	font-family: "Fira Code", monospace;
	font-weight: 400;
	font-style: normal;
}

body {
	background-color: var(--slatecharcoal);
	color: var(--bonewhite);
	font-family: 'Inter', sans-serif;
	font-family: 12pt;
	margin: 0;
	padding: 2rem;	
}

h1,h2,h3,h4,h5,h6 {
	color: var(--dinogreen);
	font-family: "russo-one-regular", sans-serif;
	font-weight: 300;
	margin: 0;
	padding: 10px 0;
}

h1 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
 

a {
	color: var(--byteblue);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	list-style-type: none;
	padding: 0;
}

li {
	margin: 5px 0;
}

.center {
	text-align: center;
}

.cta-button {
	background-color: var(--wreckorange);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.2rem;
	cursor: pointer;
	margin: 1rem;
	transition: background-color 0.3s;
  }

  .cta-button:hover {
	background-color: var(--wreckorangehover);
  }

  .section {
	margin: 2rem 0;
	max-width: max(70%, 720px);
	margin-left: auto;
	margin-right: auto;
  }

  .highlight {
	background-color: #333;
	padding: 1rem;
	border-left: 6px solid #FFCB40;
	margin-top: 1rem;
	text-align: left;
  }

  @media (max-width: 600px) {
	body {
	  padding: 1rem;
	}
  
	h1 {
	  font-size: 1.8rem;
	}
  
	h2 {
	  font-size: 1.4rem;
	}
  
	.cta-button {
	  display: block;
	  width: 100%;
	  margin: 0.5rem 0;
	  font-size: 1rem;
	}
  
	.highlight {
	  font-size: 0.95rem;
	}
  }
  