body{
	margin: 0;
    font-family: 'Comfortaa', cursive;
}
body a{
	text-decoration-line: none;
}
* {
	box-sizing: border-box
}
.inicio{
	margin-top: 100px;
	color: #023382;
	width: 100%;	
	text-align: center;
	font-size: 20px;
	display: inline-block;
	font-family: 'Comfortaa', cursive;
}
.inicio h1{
	font-family: 'Comfortaa', cursive;
}
.mainContainer{
	position: relative;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
	margin-bottom: 25px;
	padding-top: 50px;
	padding-bottom: 25px;
	display: inline-block;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.buttonContainer{
	width: 100%;
	margin-top: 20px;
}
.nameContainer{
    width: 15%;
	padding: 20px;
	margin: 10px;
	margin-top: 20px;
    display: inline-block;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.overlay {
	height: 100%;
	width: 100%;
	display: none;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0, 0.9);
  }
  .overlay-content {
	position: relative;
	top: 46%;
	left: 30%;
	width: 80%;
	text-align: center;
	margin-top: 30px;
	margin: auto;
	display: inline-block;
  }
  
  .overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
	cursor: pointer;
	color: white;
  }
  
  .overlay .closebtn:hover {
	color: #ccc;
  }
  .inputData{
	padding: 15px;
	font-size: 17px;
	border: none;
	
	width: 50%;
	background: white;
	background: #f1f1f1;
  }
  .btn {
	width: 49%;
	border: none;
	color: white;
	padding: 14px 28px;
	font-size: 16px;
	cursor: pointer;
  }
  .btn-success{
	width: 100%;
	margin-top: 80px;
	text-decoration: none;
  }
  .btn-outline-primary {
	color: black;
  }
  .success {
      background-color: #04AA6D;
  } /* Green */
  .success:hover {
      background-color: #46a049;
  }
.counter{
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	justify-content: center;
	width: 20%;
	margin: 0 auto;
}
.counter h1{
	width: 10%;
	margin: 0 auto;
}
.form{
	width: 30%;
	margin: 0 auto;
	margin-bottom: 25px;
}

input[type=text]{
	width: 100%;
	box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  padding: 12px 10px 12px 10px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  margin-top: 50px;
}

input[type=text]:focus {
    border:2px solid #539e4a;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.nameContainer{
		width: 40%;
		padding: 15px;
		background-color: #04AA6D;
		color: white;
		border: 1px;
		-webkit-appearance: none;
		-moz-appearance: none;
	}
	.inicio{
		width: 80%;
		margin: 0 auto;
		display: block;
		margin-top: 50px;
	}
	.mainContainer{
		padding-top: 0;
		margin-top: 25px;
	}
	.form{
		width: 80%;
	}
	.welcome{
		font-size: 28px;
	}
    .counter{
		padding-top: 10px;
		padding-bottom: 10px;
		width: 80%;
	}
	.overlay-content{
		width: 100%;
		top: 25%;
	}
	.counter h1{
		width: 20%;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	.nameContainer{
		width: 30%;
		background-color: #04AA6D;
		color: white;
		border: 1px;
		-webkit-appearance: none;
		-moz-appearance: none;
	}
	.inicio{
		margin-top: 50px;
	}

	.mainContainer{
		padding-top: 0;
	}
	.form{
		width: 50%;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.nameContainer{
		width: 30%;
	}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	.nameContainer{
        width: 15%;
        border: 3px;
	}
	.inicio{
		margin-top: 50px;
	}
	.mainContainer{
		padding-top: 0;
	}
	.form{
		width: 25%;
	}
}