body
{
    overflow: hidden;
    color: darkblue;
    text-align: center;

}

.animatedcircuit
{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
}

.animatedcircuit svg
{
	min-width:100%;
	min-height: 100%;
	width: 100%;
    height: 100%;
}

.st0 {
  fill: none;
  stroke: #efefef;
  stroke-miterlimit: 10;
}
.st1 {
  fill: none;
  stroke: #bbdaed;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}

.logo
{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-image: url("../img/stargatew.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45%;
}

.logo2
{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
   /*background-image: url("../img/logo_stargate.jpg");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: 250px;
    vertical-align: middle;
    text-align: center;

}

.divid
{
  width:40%;
}

@media screen and (max-width: 600px) {
  .logo
{
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-image: url("../img/stargatew.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85%;
}

.divid
{
  width:34%;
}
}

.logo {
  -webkit-animation-name: rotate;
  -webkit-animation-duration:250s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:linear;
  -moz-animation-name: rotate;
  -moz-animation-duration:250s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:linear;
}

@-webkit-keyframes rotate {
  from {-webkit-transform:rotate(0deg);}
  to {  -webkit-transform:rotate(360deg);}
}

@-moz-keyframes rotate {
  from {-moz-transform:rotate(0deg);}
  to {  -moz-transform:rotate(360deg);}
}