:root {
	--ag-primary-color: #f26419;
	--ag-white-color: #fdfdff;
	--ag-black-color: #0c0c0c;

	--ftxt-primary-color: #4dccbd;
	--ftxt-white-color: #F6F6FF;
	--ftxt-black-color: #000000;
}

* {
	margin: 0;
	padding: 0;
}

.friends-content {
	display: flex;
	flex-direction: column;
	text-align: center;
	background-color: var(--ftxt-white-color);
	color: var(--ftxt-black-color);
	min-height: 100vh;
	gap: 12px;
	padding: 0 5vw;
}

.friends-content > p {
	font-size: 1.6rem;
}

.projects-content {
	display: flex;
	flex-direction: column;
	padding: 4px;
}

.projects-content > ul {
	display: flex;
	flex-direction: column;
	padding: 4px;
	gap: 12px;
}

.big {
	font-size: 30px;
}

code {
	font-family: monospace;
	padding: 6px;
	background-color: #eeeeee;
	color: #333333;
	border: 2px solid black;
}

.home-content {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-auto-rows: 130px;
	gap: 20px;
	padding: 20px;
}

@media (max-width: 768px) {
	.home-content {
		display: flex;
		flex-direction: column;
	}
}


.home-content > .title {
	grid-column: 1 / 4;
}

.ag {
	grid-column: 5 / 8;
	grid-row: 1 / 3;
	background-color: var(--ag-primary-color);
	padding: .8rem;
	border-radius: 20px;
}

.ag > a {
	color: var(--ag-white-color);
	text-decoration: none;
	font-size: 1.7rem;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
}

.ag > a > p {
	font-size: 1rem;
}

.ag-ec {
	white-space: pre;
	color: var(--ag-black-color);
}

.blogblock {
	grid-column: 2 / 5;
	grid-row: 2 / 3;
	background-color: black;
	padding: .8rem;
	border-radius: 20px;
}

.blogblock > a {
	color: white;
	text-decoration: none;
	font-family: monospace;
	text-align: center;
	font-size: 1.7rem;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
}

.ftxt {
	grid-column: 1 / 5;
	grid-row: 3 / 5;
	background-color: var(--ftxt-white-color);
	padding: .8rem;
	border-radius: 20px;
}

.ftxt > a {
	color: var(--ftxt-black-color);
	text-decoration: none;
	font-size: 1.7rem;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	height: 100%;
}

.ftxt > a > p {
	font-size: 1.3rem;
}


@font-face {
  font-family: "Eurocrat";
  src: url("/fonts/Eurocrat/Eurocrat W01 Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Eurocrat";
  src: url("/fonts/Eurocrat/Eurocrat W01 Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Eurocrat";
  src: url("/fonts/Eurocrat/Eurocrat W01 Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Eurocrat";
  src: url("/fonts/Eurocrat/Eurocrat W01 Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Eurocrat";
  src: url("/fonts/Eurocrat/Eurocrat W01 Black.ttf") format("truetype");
  font-weight: 900;
}

.ag-font-regular {
  font-family: "Eurocrat", sans-serif;
  font-weight: 400;
}

.ag-font-light {
  font-family: "Eurocrat", sans-serif;
  font-weight: 300;
}

.ag-font-medium {
  font-family: "Eurocrat", sans-serif;
  font-weight: 500;
}

.ag-font-bold {
  font-family: "Eurocrat", sans-serif;
  font-weight: 700;
}

.ag-font-black {
  font-family: "Eurocrat", sans-serif;
  font-weight: 900;
}
