:root {
	--accent: #2c3e50;
	--button: #e67e22;
	--text: #333;
	--bg: #f0f0f0;
	--container: #fff;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
	background-color: var(--bg);
	color: var(--text);
	padding-bottom: 5rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--container);
	padding: 1rem;
}

header {
	text-align: center;
	margin-bottom: 2rem;
}

header h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.logo a {
	margin-right: 1rem;
	color: var(--accent);
	text-decoration: none;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	width: 100%;
}

.divider {
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.grid {
		grid-template-columns: repeat(4, 1fr);
		width: 50%;
		margin: 0 auto;
	}
}

.profile {
	text-align: center;
	color: var(--accent);
	text-decoration: none;
}

.profile img {
	width: 100%;
	max-width: 140px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 0.5rem;
	display: block;
}

.profile .name {
	font-weight: bold;
	margin-bottom: 0.5rem;
}

h2 {
	margin-top: 2rem;
	font-size: 1.5rem;
}

p {
	margin: 1rem 0;
	line-height: 1.5;
}

nav a {
display: inline-block;
  margin-top: 10px;
	margin-right: 1rem;
	color: var(--accent);
	text-decoration: underline;
}

nav.nav-root {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
	padding: 0 20px 20px 20px;
	//max-width: 800px;
	margin: 0 auto;
}
nav.nav-root a {
	display: inline-block;
	background-color: white;
	color: #333;
	text-decoration: none;
	padding: 12px 18px;
	border: 1.5px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	transition: 0.3s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
nav.nav-root a:hover,
nav.nav-root a:focus {
  background: #f0f0f0;
  border-color: #999;
  color: #000;
}
@media (max-width: 600px) {
    nav.nav-root a {
      font-size: 13px;
      padding: 8px 12px;
      max-width: 45vw;
      min-width: unset;
    }
  }
footer {
	text-align: center;
}

.footer-button {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--button);
	color: #1a1a1a;
	text-align: center;
	padding: 1rem;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	z-index: 1000;
}