* {
	box-sizing: border-box;
}

body {
	background-color: limegreen;
	margin: 0;
	padding: 0;
}

footer {
	width: 100%;
	text-align: center;
	border-top: lime solid 1px;
	margin-top: 30px;
	padding-top: 10px;
}

footer::after {
	content: "Made by: ME";
}

.domov {
	float: left;
}
.domov::after {
	content: "Domov";
}

.boder {
	background-color: #222222;
	padding: 20px 30px;
	max-width: 700px;
	margin: auto;
	color: limegreen;
	font-family: "Courier New";
	min-height: 100vh;
}

.boder {
	.code-block {
		background-color: #312d2d;
		padding: 2px 10px;
		border-radius: 5px;
		margin: 15px 0;
	}

	h1, h2, h3, h4 {
		text-decoration: underline dotted;
	}

	h1 {
		text-align: right;
	}

	p {
		font-size: 13px;
		text-align: justify;
		text-indent: 1px;
	}

	li {
		text-indent: 20px;
	}

	:any-link {
		color: limegreen;
		text-decoration: underline dashed;
	}
	a:hover {
		font-weight: bold;
	}
	a:visited {
		color: green;
	}

	img {
		max-width: 650px;
	}
}

nav {
	display: flex;
    justify-content: space-between;
	background-color: #100505;
	border-bottom: limegreen solid 1px;
	padding: 0;
	max-width: 800px;
    margin: auto;
    border-radius: 10px;
}

nav :last-child {
	border-radius: 0 10px 10px 0;
}

nav :first-child {
	border-radius: 10px 0 0 10px;
}

nav :any-link {
	color: limegreen;
	margin: 10px;
	text-decoration: none;
	padding: 15px 10px;
	width: 100%;
	margin: 0;
	text-align: center;
	transition: background-color 0.5s;
}

nav a:hover {
	background-color: #3b3b3b;
}
