﻿main {
	padding: 0;
}

main > img {
	width: 100%;
	max-height: 300px;
	object-fit: cover;
}

section {
	padding: 1rem;
}

section > h1 {
	margin: 1.5rem auto;
	border-bottom: 2px solid var(--rust-red);
	display: block;
	width: fit-content;
	padding-bottom: 4px;
}

	section > h1 > b {
		color: var(--rust-red);
	}


section > p {
	line-height: 1.7;
	margin-bottom: 1rem;
	font-size: 14px;
}

	section > p > a {
		color: var(--rust-red);
		text-decoration: none;
		font-weight: bold;
	}

@media (max-width: 600px) {
	section > h1 {
		font-size: 23px;
	}

	section > p {
		font-size: 13px;
	}
}