body,
html {
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.cloud-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}

.center-text img {
  width: 30%;
  margin-bottom: 20px;
}

.center-text h1 {
  font-size: 1em;
  margin: 0;
  margin-bottom: 10px;
}

.center-text p {
  margin: 0 0 20px 0;
  padding: 10px 0;
  background: #ff9900;
  opacity: 0.7;
  color: white;
  font-size: 0.7em;
}

.center-text a {
  color: white;
  text-decoration: none;
  margin: 15px;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom,
      rgba(35, 1, 88, 0.85),
      rgba(65, 6, 202, 0));
  z-index: 0;
}

.center-text h2 {
  font-size: 1.0em;
  color: #ff9900;
  position: relative;
  display: inline-block;
  margin: 0 20px 10px 0;
}

.center-text h2:before,
.center-text h2:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background-color: #ff9900;
  transform: translateY(-50%);
}

.center-text h2:before {
  left: -90px;
}

.center-text h2:after {
  right: -90px;
}

@media (min-width: 768px) {
  .center-text img {
    width: 20%;
    margin-bottom: 20px;
  }

  .center-text h1 {
    font-size: 1.5em;
    margin: 20px 0;
  }
}