/* Prevent scrolling and fill screen */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

/* Full-screen background image */
body {
  background: url('background(2).png') no-repeat center center fixed;
  background-size: cover;
  color: black;
}

/* Centered content container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: rgba(255, 255, 255, 0.6); /* semi-transparent for readability */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

/* Right-side staggered links */
.links {
  position: absolute;   /* float independently on the screen */
  top: 40%;             /* roughly vertical center */
  right: 9rem;          /* distance from right edge */
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.links a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

.links a:nth-child(1) { transform: translateX(0) translateY(-60px); }
.links a:nth-child(2) { transform: translateX(-20px) translateY(0px); }
.links a:nth-child(3) { transform: translateX(-0px) translateY(60px); }

.links a:hover {
  color: #666;
}

