/* pseudos *******************************/

:root {
	--cl: #f4f4f4; /* light */
	--cd: #333; /* dark */
	--cw: #fff; /* white */
	--cb: #000; /* black */
	--cp: #010d19; /* primary */
	--c1: #d800ff; /* other 1 */
	--c2: #5489e5; /* other 2 */
	--c3: #10e7ff; /* other 3 */
	--cl-rgb: 248,248,248;
	--cd-rgb: 51,51,51;
	--cw-rgb: 255,255,255;
	--cb-rgb: 0,0,0;
	--cp-rgb: 1,13,25;
	--c1-rgb: 216,0,255;
	--c2-rgb: 84,137,229;
	--c3-rgb: 16,231,255;
	--s0: 5px;
	--s1: 10px;
	--s2: 20px;
	--s3: 30px;
	--s4: 40px;
	--s5: 50px;
	--s6: 60px;
	--s7: 70px;
	--s8: 80px;
	--t0: 0.2s;
	--fs: 0.7rem;
	--of: 0.7;
	--e0: ease;
}

a.badge:hover {
	color: #fff;
}

.table-sprints img {
	height: 25px;
	opacity: 0.5;
	transition: all ease 0.5s;
	width: auto;
}

.table-sprints img:hover {
	opacity: 1;
}

.btn {
	padding: 2px 10px;
}

.btn-primary {
	background-color: #5489e5;
	border-color: #5489e5;
	margin-right: 5px;
}

.btn-secondary {
	background-color: #010d19;
	border-color: #010d19;
	margin-right: 5px;
}

/* tags *******************************/

body {
	background-color: #f3f3f3;
	color: var(--cd);
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	position: relative;
}

img {
	width: auto;
}

a {
	color: #03c;
	outline: 0;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: rgb(var(--c2-rgb),0.2);
	text-underline-offset: 2px;
	transition: all var(--t0) var(--e0);
}

a:hover {
	text-decoration-color: rgb(var(--c2-rgb),1);
}

.sprint-odd { background-color: #fff !important; }
.sprint-even { background-color: #f6f6f6 !important; }
.sprint-alert { background-color: #fff3cd !important; }

.head {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

h2 {
	background-color: #333;
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	padding: 5px 10px;
}

th {
	font-weight: 600;
}

tr, th {
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}

.table {
	margin-bottom: 0 !important;
}

.card-footer {
	border-top: 0;
}

/* canvas *******************************/

.canvas .header {
	align-items: center;
	background: linear-gradient(4deg, rgba(var(--c2-rgb),1) 0%, rgba(var(--c1-rgb),1) 100%);
	display: flex;
	gap: var(--s4);
	justify-content: space-between;
	padding: var(--s3) var(--s2);
	width: 100%;
}

.canvas .header .logo img {
	height: auto;
	max-width: 360px;
	width: 100%;
}

.canvas .header .nav {
	align-items: center;
	display: none;
	flex-grow: 2;
	gap: var(--s2);
	justify-content: flex-start;
}

.canvas .header .nav .links {
	align-items: center;
	display: none;
	gap: var(--s2);
	justify-content: flex-start;
}

.canvas .header .nav .links a {
	color: var(--cw);
	font-family: Montserrat;
	font-size: 1.25rem;
	font-weight: 600;
	text-decoration-color: rgb(var(--c2-rgb),1);
	text-transform: uppercase;
}

.canvas .header .nav .links a:hover {
	text-decoration-color: rgb(var(--c3-rgb),1);
	text-underline-offset: 2px;
}

.canvas .header .nav .links img {
	height: var(--s2);
	width: auto;
}

.canvas .body {
	margin: 0 auto;
	max-width: 1200px;
	padding: 40px 20px;
}

.canvas .footer {
	align-items: center;
	background-color: var(--cp);
	color: var(--cw);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	padding: var(--s4) var(--s4);
}

.canvas .footer .tagline {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-basis: 100%;
	flex-wrap: wrap;
	justify-content: center;
	order: 2;
}

.canvas .footer .tagline .text {
	font-weight: 600;
	margin: var(--s1) 0;
}

.canvas .footer .tagline .logo {
	margin-left: var(--s1);
	position: relative;
}

.canvas .footer .tagline .logo img {
	height: var(--s5);
	width: auto;
}

@media (min-width: 820px) {

	.canvas .header .nav {
		display: flex;
	}

	.canvas .footer {
		padding: var(--s5) var(--s4);
	}

	.canvas .footer .tagline {
		flex-basis: calc((100vw - var(--s6)) / 3);
		justify-content: flex-start;
		order: 1;
	}
}

@media (min-width: 1310px) {

	.canvas .header .nav .links {
		display: flex;
	}
}

/* .ring *******************************/

.ring {
	animation-duration: 12s;
	animation-iteration-count: infinite;
	animation-name: ripple;
	animation-timing-function: var(--e0)-out;
	border: 1px solid rgb(0,174,239,0.5);		
	border-radius: 50%;
	height: var(--s5);
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: var(--s5);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.ring1 {
	animation-delay: 0;
}

.ring2 {
	animation-delay: 4s;
}

.ring3 {
	animation-delay: 8s;
}

@keyframes ripple {

	from {
		border-width: 6px;
		height: var(--s5);
		left: 0px;
		opacity: 0.3;
		top: 0px;
		width: var(--s5);
	}

	to {
		border-width: 1px;
		height: 800px;
		left: -375px;
		opacity: 0;
		top: -375px;
		width: 800px;
	}
}
