﻿@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

html {
	scroll-behavior: smooth;
}

.animate-fadeIn {
	animation: fadeIn 0.2s ease-out;
}

main img,
.article-content img,
.content img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}
