/* General page styling */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #443664; /* background color */
  font-family: Arial, sans-serif;
}

/* Center box */
.card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Title */
.title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #333;
}

/* Navigation links */
.nav {
  margin-bottom: 1.5rem;
}

.nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #49515b;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

/* Content */
.content {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

a {
    font-size: 20px;
    font-weight: bold;
  }
