body {
	margin: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/main_background.png") repeat-y;
	background-size: 100%;
	font-family: Arial, sans-serif;
}

.container {
	text-align: center;
}

.link {
	font-size: 24px;
	text-decoration: none;
	color: #333;
	padding: 10px 20px;
	border: 2px solid #333;
	border-radius: 5px;
	transition: 0.3s;
}

.link:hover {
	background: #333;
	color: #fff;
}

.new-label {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.75rem;
	margin-left: 8px;
	padding: 2px 8px;
	background: #e63946;
	color: #fff;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

button {
	border-radius: 10px;
	background: #3f8aa6;
	background: linear-gradient(90deg, rgba(63, 138, 166, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
	border: none;
	color: white;
}