
@charset "UTF-8";
/* CSS Document */
*{
	box-sizing: border-box;
}

body {
	font-family: "canada-type-gibson", arial;
	font-weight: 100;
	height: 100vh;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
}

.screen {
	background-image: url("images/bluebg.jpg");
	background-size: cover;
	display: flex;
	flex-direction:column;
	align-items: center;
	height: 100vh;
	width: 100vw;
	transition: margin 0.5s ease-out;
}

.screen.up {
	margin-top: -100vh;
	transition: margin 0.5s ease-out;
}

.dpcbg {
	background-image: url("images/bluebg-01.jpg");
}

h1 {
	font-family: "canada-type-gibson", arial;
	font-weight:300;
	margin-top:5px;
}

h1, h2, h3 {
	font-family: "canada-type-gibson", arial;
	color: #FFFFFF;
}

#Tlslogo {
	width: 170px;
	height: 73px;
	margin-top: 30px;
	background-image: url("images/Tls-logo.svg");
	background-repeat: no-repeat;
}

#start-btn {
	width: 309px;
	height: 296px;
	margin-top: 30px;
	border: none;
	background-color: transparent;
	background-image: url("images/Group_252.png");
	cursor: pointer;
}

#dots-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 350px;
}

.dot {
	background-color: #242A75;
	box-shadow: 0 0 4px #242A75;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	margin: 10px;
	border: none;
}

.pink {
	background-color: #AF0F69;
	box-shadow: 0 0 10px #AF0F69;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	cursor: pointer;
	margin: 10px;
	transition: 0.1s ease-in-out;
}

.blue {
	background-color: #00bbdd;
	box-shadow: 0 0 10px #00bbdd;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	cursor: pointer;
	margin: 10px;
	transition: 0.1s ease-in-out;
}

.yellow {
	background-color: #F2E900;
	box-shadow: 0 0 10px #F2E900;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	cursor: pointer;
	margin: 10px;
	transition: 0.1s ease-in-out;
}

#time {
	width: 350px;
	text-align: left;
	left:20px;
}

.time {
	font-family: "canada-type-gibson", arial;
	font-weight: 200;
	font-size: 1.3em;
	display: inline;
	float: left;
	width: 10%;
}

#progress-bar{
  width: 0%;
}

#progress-bar.start{
  display: inline;
  float: right;
  margin-top: 30px;
  background-color: #00BBDD;
  box-shadow: 0 0 10px #00bbdd;
  height: 4px;
  width: 85%;
  animation: grow 16s linear;
  transform-origin: left;
}

@keyframes grow {
  100% {
    transform: scaleX(0);
  }
}

.score {
	font-family: "canada-type-gibson", arial;
	font-weight: 200;
	font-size: 1.3em;
	width: 350px;
	text-align: left;
	margin-top: 30px;
	left:20px;
}

#countdown {
	width: 150px;
	height: 150px;
	position: absolute;
	margin-top: -1500px;
	background-color: #fff;
	padding: 30px;
	border-radius: 50%;
	z-index: 100;
	text-align: center;
}

#countdown h1 {
	font-family: "canada-type-gibson", arial;
	font-size: 4em;
	font-weight: 700;
	color: #242A75;
	text-align: center;
	padding-top:1px;
}

#countdown.visible {
	margin-top: 200px;
	transition: 0.3s ease;
}

.message {
	width: 300px;
	position: absolute;
	margin-top: -1500px;
	line-height: 1.7;
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	z-index: 100;
	text-align: center;
	opacity: 0;
}

.message.visible {
	opacity: 1;
	margin-top: 150px;
}

#showscore {
	font-size: 3em;
	color: #242A75;
}

.bluebtn {
	background-color: #00bbdd;
	color: #fff;
	border: none;
	margin-top: 10px;
	border-radius: 4px;
	padding: 10px 10px;
	align-self: center;
}