html * {
	border: 0;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

body {
	background-color: white;
	overflow-x: hidden;
	font-family: 'Verdana', sans-serif;
}

.background-gradient {
	background: linear-gradient(135deg, darkblue, cyan);
}

.background-gradient-magenta {
	background: linear-gradient(135deg, Magenta, Darkblue);
}

.background-gradient-red {
	background: linear-gradient(135deg, Red, Magenta);
}

.right {
	color: white;
	text-align: right;
}

.button-accent {
	background-color: darkblue;
	color: white;
}

.button:hover {
    box-shadow: 0 0 15px grey;
    transition: box-shadow .3s ease-in;
}

.accent {
	color: white;
}

.langSwitcher {
	padding: 10px;
	background-color: white;
	border-radius: 20px;
	float: right;
	margin: 5px;
}

.langSwitcher:hover {
	box-shadow: 0 0 15px grey;
	transition: box-shadow .3s ease-in;
}