html, body { 
  min-height: 100%; 
}

body {
    font-family: 'Roboto', sans-serif;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
	color:#ffffff;
}

header {
    text-align: center;
	position: absolute;
top: 50%;
left:50%;
transform: translate(-50%, -50%);
margin:0px auto;
}
#countdown div{
	font-size:30%;
	position: relative;
	top: -25px;
	display:inline-block;
	font-weight:100;
}
h1 {
    font-family: 'Roboto';
    color: #fff;
    font-size: 60px;
    padding-top: 20px;
    margin-top: 0;
    padding-top: 20px;
}

h3 {
  font-family: 'Roboto';
  font-size: 40px;
  color:#ffffff;
  font-weight:100;
}

.btn-custom {
    text-transform: uppercase;
    color: #fff;
    background-color: #de1525;
	text-decoration:none;
    border: 0;
    padding: 14px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.5s;
    margin-top: 20px;
}

@media (max-width: 480px) {
    body {
        background-image: url(../images/background-mobile.jpg);
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    body {
        background-image: url(../images/background-tablet.jpg);
    }
}

@media (min-width: 1025px) {
	body {
		background-image: url(../images/background-desktop.jpg);
	}
}