
/* SGN LANDING PAGE - CSS FILE */ 

html,
body {
  align-items: center;
/*// background-image: url(img/sunnyfield.jpg); //*/ 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0;
  width: 100%;
  overflow: hidden;
}
.sun-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.core {
  animation: anim-core-glow 1s cubic-bezier(0.7, 0.5, 0.8, 0.9) alternate infinite;
  border-radius: 50%;
  height: 150px;
  position: absolute;
  width: 150px;
  overflow: hidden;
  box-shadow: 0 0 30px 20px rgba(255, 213, 79, 0.65);
}
.texas-lone-star {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: rgba(255, 213, 79, 0.6);
}
.orbit {
  border: 3px dashed rgba(255, 213, 79, 0.55);
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}
.orbit-1 {
  height: 160px;
  width: 160px;
  animation: anim-orbit-1 10s linear infinite;
}
.orbit-2 {
  height: 200px;
  width: 200px;
  animation: anim-orbit-2 15s linear infinite;
}
.orbit-3 {
  height: 240px;
  width: 240px;
  animation: anim-orbit-3 20s linear infinite;
}
.orbit-4 {
  height: 280px;
  width: 280px;
  animation: anim-orbit-4 25s linear infinite;
  border-color: rgba(255, 213, 79, 0.4);
}
.orbit-5 {
  height: 320px;
  width: 320px;
  animation: anim-orbit-5 30s linear infinite;
  border-color: rgba(255, 213, 79, 0.2);
}

@-moz-keyframes anim-core-glow {
  0% {
    box-shadow: 0 0 30px 20px rgba(255, 213, 79, 1);
  }

  100% {
    box-shadow: 0 0 90px 20px rgba(255, 213, 79, 1);
  }
}

@-moz-keyframes anim-orbit-1 {
  0% {
    transform: perspective(0) rotateX(0) rotateY(70deg) rotateZ(0);
  }

  100% {
    transform: perspective(0) rotateX(0) rotateY(70deg) rotateZ(360deg);
  }
}

@-moz-keyframes anim-orbit-2 {
  0% {
    transform: perspective(0) rotateX(70deg) rotateY(30deg) rotateZ(0);
  }

  100% {
    transform: perspective(0) rotateX(70deg) rotateY(30deg) rotateZ(360deg);
  }
}

@-moz-keyframes anim-orbit-3 {
  0% {
    transform: perspective(0) rotateX(70deg) rotateY(-30deg) rotateZ(0);
  }

  100% {
    transform: perspective(0) rotateX(70deg) rotateY(-30deg) rotateZ(360deg);
  }
}

@-moz-keyframes anim-orbit-4 {
  0% {
    transform: perspective(0) rotateX(30deg) rotateY(60deg) rotateZ(0);
  }

  100% {
    transform: perspective(0) rotateX(30deg) rotateY(60deg) rotateZ(360deg);
  }
}

@-moz-keyframes anim-orbit-5 {
  0% {
    transform: perspective(0) rotateX(40deg) rotateY(-60deg) rotateZ(0);
  }
}

.text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.text-title {
  background-color: #00000000;
  color: #000;
  font-size: 2.2em;
  letter-spacing: 2px;
  padding: 10px;
}

/* BEGIN FOOTER */ 

.fixed {
  position: fixed;
  width: 100%;
  bottom: 10px;
  background-color: #00000000;
  color: #000;
  line-height: 10px;
  font-size: 1.35em;
  text-align: center;
  margin: 20px auto;
  opacity: 0.875;
}

/* END FOOTER */ 
