@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,700&display=swap&subset=latin-ext');
	
body {
  width: 100vw;
  min-height: 100vh;
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;	  
  background: rgb(52,179,76);
  background: -moz-radial-gradient(circle, rgba(52,179,76,1) 0%, rgba(30,156,215,1) 57%, rgba(0,117,190,1) 87%, rgba(0,91,151,1) 100%);
  background: -webkit-radial-gradient(circle, rgba(52,179,76,1) 0%, rgba(30,156,215,1) 57%, rgba(0,117,190,1) 87%, rgba(0,91,151,1) 100%);
  background: radial-gradient(circle, rgba(52,179,76,1) 0%, rgba(30,156,215,1) 57%, rgba(0,117,190,1) 87%, rgba(0,91,151,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#34b34c",endColorstr="#005b97",GradientType=1);		  	  
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@-webkit-keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(50px);transform:translateY(50px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}
@keyframes fadeIn{0%{opacity:0;-webkit-transform:translateY(50px);transform:translateY(50px)}to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}

.container {
  width: 300px;
  height: 300px;
  padding:60px;
  color: #000000;
  text-align: center;
  background-image: url(bg_inner.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.59);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.59);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.59);
  -webkit-animation: fadeIn 300ms ease-in-out;
  -moz-animation: fadeIn 300ms ease-in-out;
  -o-animation: fadeIn 300ms ease-in-out;
  animation: fadeIn 300ms ease-in-out;	 
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.container.hover {
  background-image: url(bg_inner_hover.png) !important;
  cursor: default;
}

.container div#info
{
  display: none;	
}  
.container h1 {
  margin:0px;
  padding-top: 80px;
  line-height: 40px;
  color: #005B97;
  font-variant: small-caps;
}
.container span.slogan {
  display: block;
  font-size: 20px;
  padding: 0px 0px 15px 0px;
}
.container h2 {
  margin:0px;
  padding: 0px;
  font-size: 15px;
  font-variant: small-caps;
  color: #34B34C;
}
.container span.text {
  line-height: 25px;
  display: block;
}
.container span#load-time {
  color: gray;
  line-height: 50px;
  font-size: 13px;
}
.container ul#links {
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-left: -4px;
}
.container ul#links li {
  display: inline;
  white-space: nowrap;
}
.container ul#links li:before {
  content: " | ";
}
.container ul#links li:first-child:before {
  content: none;
}

@media screen and (max-width:440px) {
  .container {
    padding: 0px;
  }
}