/* CSS Document */
.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
body, html{
     height: 100%;
 	background-repeat: no-repeat;
 	font-family: 'Oxygen', sans-serif;
	    background-size: cover;
}

.main{
 	margin:50px 15px;
}

h1 { 
	font-weight:bolder;
}

/*hr{
	width: 10%;
	color: #fff;
}*/
h3{
	color:#6C1940;
	font-weight:bolder;
}