body {
  margin: 0;
  background: #000 url("desktop.jpg") repeat;
  color: #f2f2f2;
  font-family: "Courier New", monospace;
}

.page {
  width: 1000px;
  margin: 0 auto;
  padding: 30px;
}

header {
  text-align: center;
  padding: 30px 0;
  border-bottom: 3px solid #b00000;
}

.logo {
  width: 360px;
  max-width: 90%;
}

h1 {
  font-size: 34px;
  color: white;
  margin-top: 20px;
}

nav {
  text-align: center;
  margin: 25px 0;
}

nav a {
  color: white;
  text-decoration: none;
  background: #111;
  border: 1px solid #b00000;
  padding: 10px 16px;
  margin: 5px;
  display: inline-block;
  font-weight: bold;
}

nav a:hover {
  background: #b00000;
}

section {
  background: #080808;
  border: 1px solid #444;
  padding: 25px;
  margin: 25px 0;
}

.center {
  text-align: center;
}

h2 {
  color: #ff1a1a;
  text-transform: uppercase;
  border-bottom: 1px dashed #555;
  padding-bottom: 8px;
}

a {
  color: #ff3030;
}

.hit-counter {
  display: inline-block;
  background: #111;
  border: 2px inset #555;
  color: #00ff66;
  font-size: 24px;
  letter-spacing: 6px;
  padding: 8px 14px;
  margin-top: 15px;
}

.under {
  color: #000;
  background: #fff;
  display: inline-block;
  padding: 8px 16px;
  transform: rotate(-3deg);
  font-weight: bold;
  margin-top: 15px;
}

.feature-box {
  background: #111;
  border: 1px solid #444;
  padding: 20px;
  margin: 25px 0;
  overflow: hidden;
}

.flash-headline {
  background: #b00000;
  color: white;
  border: 3px double white;
  padding: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.flash-headline span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.download-button {
  background: #b00000;
  color: white;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid white;
  display: inline-block;
}

.download-button:hover {
  background: #ff1a1a;
}

.photo {
  border: 3px solid #444;
}

.photo:hover {
  border-color: #b00000;
}

footer {
  text-align: center;
  color: #777;
  font-size: 12px;
  padding: 30px;
  border-top: 1px solid #222;
}