/* Reset page flow */
html, body {
  margin: 0;
  padding: 0;
}

/* Body defaults and background */
body {
  background-color: white;
  color: black;
  font-family: Verdana, Arial, sans-serif;

  background-image: url("../../images/sky.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  min-height: 100vh;
}

/* Page wrapper */
.page {
  width: 100%;
}

/* Top logo */
.logo {
  text-align: center;
  margin: 20px 0 10px;
}

.logo img {
  max-width: 80%;
  max-height: 150px;
}

/* Scrolling text bar */
.scroll-bar {
  width: 100%;
  height: 80px;

  background-image: url("../../images/textbar.png");
  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;

  /* Center text vertically */
  display: flex;
  align-items: center;

  margin-bottom: 5px;
}

/* Scrolling text */
.scroll-text {
  white-space: nowrap;
  color: white;
  font-size: 2em;
  font-weight: bold;

  transform: translateX(100%);
  animation: scroll-single 40s linear infinite;
}

/* Animation */
@keyframes scroll-single {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Main content */
.content {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;

  text-align: center;
  background-color: rgba(255, 255, 255, 0);
}

/* Readability */
.content p,
.content h1 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Spacer to allow scrolling */
.footer-spacer {
  height: 600px;
}
