/* Set a background image by replacing the URL below */
body {
	background: url('https://source.unsplash.com/twukN12EN7c/1920x1080') no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

/* https://codepen.io/codingyaar/pen/wvxyqmb */

.dropend .dropdown-toggle {
	margin-left: 1em;
}

.dropdown-item:hover {
	background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity));
	color: #fff;
}

.dropdown .dropdown-menu {
	display: none;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
	display: block;
}

@media screen and (min-width: 769px) {
	.dropend:hover>.dropdown-menu {
		position: absolute;
		top: 0;
		left: 100%;
	}

	.dropend .dropdown-toggle {
		margin-left: 0.5em;
	}
}