/**
 * Declarations of Open Sans font
 */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('../vender/opensans/OpenSans-Regular.ttf'), url(../vendor/opensans/OpenSans-Regular.ttf);
}

* {
	padding: 0;
	margin: 0;
}

html, body {
	font-family: 'Open Sans';
	min-height: 100vh;
}

.background {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: url(wallpaper.png) no-repeat;
	background-size: cover;
	background-position: center;
}

.background.rugby {
	background: url(wallpaper_rugby.png) no-repeat;
}

.limit-height {
	height: 500px;
	overflow-y: auto;
}

/* lg */
@media (min-width: 992px) {
	.vh-90-lg {
		height: 90vh;
	}

	.limit-height {
		height: 80vh;
		overflow-y: auto;
	}
}

.table {
	background-color: var(--primary);
}

.table td {
	background-color: white;
}

.nav-custom-link {
	color: rgba(255,255,255,.6);
	display: block;
	padding: .5rem 1rem;
}

.nav-custom-link:hover,
.nav-custom-link.active {
	color: rgba(255,255,255,1);
}
