body {
    height: 100vh;
    margin: 0;
    background: radial-gradient(#173948, #040f13);
    background-repeat: no-repeat;
  }

html, 
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.center-div {
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 450px;
  height: 180px;
}

.logo {
	width: 100%;
	height: 100px;
	background-image: url("img/laima_logo.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
	background-position: center center;
	display: inline-block;
  padding-left: 5px;
}

.line {
	background-image: url("img/line.png");
	width: 100%;
	height: 2px;
	margin: 15px 0 20px 0;
}

.logo-text {
	letter-spacing: -0.6px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
  color: #435e00;
  height: 20px;
}

#timer {
  font-size: 16px;
  letter-spacing: 1px;
  color: #FFF;
}

.fade-in-1 {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}
.fade-in-2 {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}
  
  @keyframes fadeIn{
    0% {
      opacity:0;
    }
    25% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }


  @media only screen and (max-width: 500px) {
    .logo {
      height: 60px;
    }
    .center-div {
        width: 250px;
        height: 150px;
    }

  }