/* main.css */

body {
  margin: 0;
  padding: 0;
  background-color: #0b0c0f;
  color: #e0e0e0;
  font-family: 'Georgia', serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  filter: brightness(0.4) blur(2px);
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4em 1.5em 2em;
  text-align: center;
}

.content p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

blockquote {
  font-style: italic;
  color: #ccc;
  border-left: 4px solid #666;
  padding-left: 1em;
  margin: 2em 0;
}

nav.links {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 3em;
}

nav.links a {
  color: #88f;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em 1em;
  border: 1px solid #444;
  border-radius: 6px;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}

nav.links a:hover {
  background: rgba(136, 136, 255, 0.2);
}

.clocks {
  display: flex;
  justify-content: center;
  gap: 4em;
  margin: 3em 0;
  flex-wrap: wrap;
}

.clock {
  text-align: center;
}

.clock-title {
  font-weight: bold;
  color: #fff;
}

@media (max-width: 600px) {
  .content {
    padding: 2em 1em;
  }
  .clocks {
    flex-direction: column;
    align-items: center;
  }
  nav.links {
    flex-direction: column;
  }
}

