main {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

main.visible {
  opacity: 1;
  transform: translateY(0);
}

.link {
	color: var(--accent-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--accent-primary);
	transition: color 0.3s, border-color 0.3s;
}
.link:hover {
	color: var(--text-main);
	text-decoration: none;
	border-bottom: 1px solid var(--accent-primary);
	transition: color 0.3s, border-color 0.3s;
}
.link:active {
	color: var(--text-main);
	text-decoration: none;
	border-bottom: 1px solid var(--text-main);
	transition: color 0.3s, border-color 0.3s;
}

.link2 {
	color: var(--text-main);
	text-decoration: none;
	border-bottom: 1px solid var(--text-main);
	transition: color 0.3s, border-color 0.3s;
}
.link2:hover {
	color: var(--accent-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--text-main);
	transition: color 0.3s, border-color 0.3s;
}
.link2:active {
	color: var(--accent-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--accent-primary);
	transition: color 0.3s, border-color 0.3s;
}