body, .lenkesamling, .lenke, .url-bilde {display: flex;}
body, .lenkesamling, .url-bilde {justify-content: center;}
body, .lenke, .url-bilde {align-items: center;}
body {
	font-family: Arial, sans-serif;
	margin: 0px;
	min-height: 100vh;
	background-color: #f0f0f0;
}
.lenkesamling {
	flex-wrap: wrap;
	gap: 20px;
	margin: 15px;
}
.lenke {
	flex-direction: column;
	text-align: center;
}
.url-bilde, .url-tekst {
	width: 130px;
	background-color: #fff;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.url-bilde {
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
	transition: transform 0.3s;
}
.url-bilde img {
	width: 100%;
	object-fit: cover;
}
.url-bilde:hover {
	transform: scale(1.2);
}
.url-tekst {
	text-decoration: none;
	margin-top: 10px;
	padding: 10px;
	border-radius: 8px;
	font-size: 16px;
	color: #333;
}
