body {
  font-family: Arial, sans-serif;
  margin: 3rem;
  padding: 1rem;
  color: #f0f0f0;
  background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.85)),
    url('https://perseus.darkworks.no/darkworks_logo.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

header {
  padding: 3rem;
  text-align: center;
  background: none;
  box-shadow: none;
}

.logo-text {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.logo-subtext {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  color: #cccccc;
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

header p {
  font-size: 1.3rem;
  color: #ccc;
  margin-top: 1rem;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}

.nav-section {
  max-width: 1000px;
  margin-bottom: auto;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.4);
}

.nav-bar {
  list-style: none;
  text-align: center;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-right: 1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}

nav ul li a {
  text-decoration: none;
  color: white;
}

nav ul li:not(:last-child)::after {
  content: " |";
  margin-left: 1rem;
}

main {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.2);
}

section {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

section h2 {
  border-bottom: 1px solid #00ffcc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

ul {
  list-style-type: square;
  padding-left: 1.5rem;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  /* full-width so centering works properly */
  display: flex;
  justify-content: center;
  /* horizontally center content */
  align-items: center;
  /* vertically center content (useful if there are multiple lines or elements) */
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  font-size: 0.9rem;
  color: #777;
  margin: 0;
  z-index: 1000;
}

a.email-call {
  color: white;
  text-decoration: none;
}

a.email-call:hover {
  color: #00ffcc;
  text-decoration: underline;
}

a.email-link[href^="mailto"] {
  color: white;
  text-decoration: none;
}

a.email-link[href^="mailto"]:hover {
  color: #00ffcc;
  text-decoration: underline;
}
