* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	margin: 20px;
	font-style: 36px;
	height: 100vh;
	font-family: 'Roboto', sans-serif;
	background-color: #333333;
	color: white;
}

p {
	color: rgb(14, 122, 238);
}

p.mc {
	color: rgb(39, 217, 36);
	font-size: 33px;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}

p.spacing {
	color: salmon;
	font-size: 16px;
	letter-spacing: 5px;
	text-align: center;
}

a {
	font-size: 20px;
	color: red;
	text-decoration: none;
}

/* Tekst na srodku w pionie i poziomie */
div.wysrod {
	margin-top: 30px;
	background-color: royalblue;
	height: 300px;
	text-align: center;
	line-height: 300px;
}

/* Stylizacja tabeli */
.my-table {
	width: 25%;
	border-collapse: collapse;
	margin-top: 20px;
	font-size: 16px;
	border: 2px solid #fff; /* ramka całej tabeli */
}

.my-table th,
.my-table td {
	border: 2px solid #fff; /* grubsze i widoczne ramki */
	padding: 10px;
	text-align: center;
}

.my-table th {
	background-color: #444;
	color: #00ffcc;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.my-table tr:nth-child(even) {
	background-color: #555;
}

.my-table tr:hover {
	background-color: #666;
}
