@import url('https://fonts.googleapis.com/css?family=Numans');

html,body{
	background-image: url('../img/bg.jpg');
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	
	height: 100%;
	font-family: 'Numans', sans-serif;
	color: white;
}

.container{
	height: 100%;
	align-content: center;
}

.card{
	min-height: 370px;
	height: auto;
	
	width: 400px;
		
	margin-top: auto;
	margin-bottom: auto;

	background-color: rgba(0,0,0,0.6) !important;
	color: white;
	
	-webkit-animation: mymove 5s infinite;
	animation: mymove 0.3s;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
}

.card-header h3{
	color: white;
}

.yellowLink {
	color: #FFC107;
}

.submitLink {
	background-color: transparent;
	text-decoration: underline;
	border: none;
	cursor: pointer;
}

submitLink:focus {
	outline: none;
}

.hidden {
    display: none;
}

hr {
  max-width: 100px;
  height: 2px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

hr.colored {
  border-color: #0A8FD5;
}

@-webkit-keyframes mymove {
	from {left: -300px;}
	to {left: 0px;}
}

/* Standard syntax */
@keyframes mymove {
	from {left: -300px;}
	to {left: 0px;}
}