:root {
	--outer-size: 50px;
}

body {
	font-family: "Noto Sans Mono";
}

.feed {
	display: grid;
	justify-content: center;
	grid-template-columns: 1fr;
	width: 100%;
}

@media (width >= 768px) {
	.title-and-nav-container {
		position: sticky;
		top: 10px;
		margin-left: 30px;
		margin-right: 20px;
	}
	.feed {
		grid-template-columns: 1fr 3fr;
	}
	.posts {
		margin-top: 10px;
		padding-right: 20px;
	}
	.ballsack {
		margin-bottom: 0px;
	}
	.post-card {
		margin-right: 10px;
		margin-left: 10px;
	 }
}

h1 {
	margin-top: 0px;
}

.title-and-nav-container {
	position: static;
	padding: 10px;
	top: 0px;
	min-width: 350px;
	margin-left: 0px;
	margin-right: 0px;
}

.socials {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	margin-top: 20px;
}

.ballsack {
	margin-top: 10px;
	margin-bottom: 10px;
}

.llm-input {
	display: flex;
}

.llm-input button {
	margin-left: 10px;
	width: 40px;
}

.title {
	color: #D94427 
}

.subtitle {
	max-width: 50%;
	padding-right: 10px;
}

.post-link-container {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.post-link {
	text-decoration: none;
	padding-right: 5px;
	color: black;
	font-size: 24px;
	font-weight: bold;
}

.posts {
	padding-right: 0px;
	display: flex;
	flex-direction: column;
}

.post-card {
	text-align: left;
	padding: 10px;
	overflow: clip;
	margin-bottom: 10px;
	max-height: 500px;
	border: 2px solid black;	
}

.post-container {
	text-align: left;
	padding: 10px;
	border: 2px solid black;	
}

.blog-post-header {
	display: flex;
	justify-content: space-between;
}

/* Circle rolling animation */
.roll-red {
	animation-delay: 3s;
}

.roll-black {
	animation-delay: 2s;
}

.roll-grey {
	animation-delay: 1s;
}

.roll {
	cy: 50px;
	cx: 10px;
	animation-name: roll;
	transform-origin: var(--outer-size);
	animation-duration: 3s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
}

@keyframes roll {
	0% {
		transform: rotate(0deg);
		cx: 10px;
	}
	50% {
		transform: rotate(360deg);
		cx: 10px;
	}
	100% {
		cx: 50px;
		r: 50px;
	}
}

.thinking-man {
	animation-name: thinking-man;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes thinking-man {
	0% {
		font-size: 4;
	}
	50% {
		font-size: 8;
	}
	100% {
		font-size: 2;
	}
}

.show-text {
	animation-name: show-text;
	animation-duration: 1.25s;
	animation-fill-mode: forwards;
}

@keyframes show-text {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hide-text {
	animation-name: hide-text;
	animation-duration: 1.25s;
	animation-fill-mode: forwards;
}

@keyframes hide-text {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.answer-animation {
	animation-name: answer-animation;
	animation-duration: 3s;
	animation-fill-mode: forwards;
}

@keyframes answer-animation {
	from {
		font-size: 2;
		opacity: 0;
	} to {
		font-size: 18;
		opacity: 1;
	}
}
